Question: This catch group properly follows a try block, and there are no code errors in the catch blocks, but the compiler is giving an unreachable
This catch group properly follows a try block, and there are no code errors in the catch blocks, but the compiler is giving an "unreachable code" error message. (The compiler creates code that will search down from the top of the catch group at run time to see which one of the catch blocks should be invoked. If an exception being caught is a parent class of an exception that follows, then the block catching the child exception would never be "reached" in the search.) /*A*/catch(IOException ioe) { ... some kind of processing.... } /*B*/catch(Exception e) { System.out.println(e); } /*C*/catch(NumberFormatException nfe) { ... some other kind of processing.... } /*D*/catch(RemoteException re) { ... still some other kind of processing.... } Specify an order the catch blocks can be placed in to avoid this error message using the four letters ABCD as a single "word". (If there is more than one correct answer, specify only one of them.)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
