How does a try statement determine which catch clause should be used tohandle an exception

When an exception is thrown within the body of a try statement, the catch clauses of thetry statement areexamined in the order in which they appear. The first catch clause that is capable ofhandling the exceptionis executed. The remaining catch clauses are ignored.

 

This Question is not yet answered!

 
 

Related Answered Questions

 

Related Open Questions