top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

Can multiple catch blocks be executed?

+3 votes
176 views
Can multiple catch blocks be executed?
posted Nov 28, 2014 by Manikandan J

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

-->  No, Multiple catch blocks can’t be executed. Once the proper catch code executed, the control is transferred to the finally block and then the code that follows the finally block gets executed.

answer Nov 28, 2014 by Jdk
...