If the inner exception gets thrown, is there any way to then force the outer one to get caught? I don't have much experience with exceptions, so correct me if I'm wrong, but normally the inner exception would get caught and then execution would continue as normal.
If there's no way to do this, then what's the standard way of knowing exactly where the exception came from (that's the only reason I have nested try/catch)
Using throw; without actually specifying something to throw simply rethrows the last exception.
EDIT:
If there's no way to do this, then what's the standard way of knowing exactly where the exception came from (that's the only reason I have nested try/catch)
Why not put that information inside the exception object?