Inner Classes and Exceptions

Exception Handling in Java: Try, Catch, Finally

1/34

Given:

try {
   System.out.print("In the try block");
} catch (IOException e) {
   System.out.print("In the IOException catch block");
}

What is the result?

 

Comments