Just curious about this
If a finally block throws an exception what exactly happens
|
Just curious about this If a finally block throws an exception what exactly happens |
|||||||||
|
That exception propagates out and up, and will (can) be handled at a higher level. Your finally block will not be completed beyond the point where the exception is thrown. If the finally block was executing during the handling of another exception, then that first exception is lost.
|
|||||||||
|
|
For questions like these I usually open up an empty console application project in Visual Studio and write a small sample program:
When you run the program you will see the exact order in which Inner catch block handling exception thrown from try block. Inner finally block Outer catch block handling exception thrown from finally block. Outer finally block Additional Remark As Michael Damatov pointed out, an exception from the
As you can see from the output the inner exception is "lost" (i.e. ignored): Inner finally block Outer catch block handling exception thrown from finally block. Outer finally block |
|||||||||||||
|
|
The exception is propagated. |
|||
|
|
|
If there is an exception pending (when the If there is no exception pending, it works just as throwing an exception outside the |
|||
|
|
|
Throwing an exception while another exception is active will result in the first exception getting replaced by the second (later) exception. Here is some code that illustrates what happens:
|
|||
|
|
It throws an exception ;) You can catch that exception in some other catch clause. |
|||
|
|
The exception throw by CodeA and CodeB are the same. EDIT: I mean, an exception throw in a finnally block has nothing special, treat it as the exception throw by code B. |
|||||
|
|