Examveda
Examveda

What happen in case of multiple catch blocks?

A. Either super or subclass can be caught first.

B. The superclass exception must be caught first.

C. The superclass exception cannot caught first.

D. None of these

Answer: Option C


This Question Belongs to Java Program >> Exceptions

Join The Discussion

Comments ( 1 )

  1. Yatin Verma
    Yatin Verma :
    7 years ago

    It is because it we catch any superclass Exception first, then it will be caught and other Exception which is written below will ot be executed and give compile time error. Hence subclass excepton should be at top and superclass Exception at bottom

Related Questions on Exceptions