What happens if a try-catch-finally statement does not have a catch clause to handlean exception that is thrown within the body of the try statement

The exception propagates up to the next higher level try-catch statement (if any) orresults in the program's termination.

Showing Answers 1 - 4 of 4 Answers

Denis Wang

  • Jul 14th, 2005
 

finally block will be executed first before the exception is propagatged to the next level up.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions