Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

If a finally clause is specified, irrespective of whether the try or catch block executes to completion or not, the finally block is executed. Conseuqnetly Consequently statements that abruptly exit from the finally block may cause related catch blocks to not be get executed. Thus, keywords like return, break, continue and throw should never be used within a finally block.

...

Here, the finally block completes abruptly since a return statement occurs within it. As a result, when the exception is thrown in method someException, it does not show up in the output. This is due to the abrupt termination of the finally block that suppresses any useful exception information from being displayed in the try block by overriding it with its own message. Note that even if the try block returns some value, the finally block is executed.

Note that MullPointerException is a RuntimeException, and thus does not need to occur in a throws declaration. The throwException() function never actually throws a SomeException class, although it claims to via its throws declaration.

...