File size: 722 Bytes
c574d3a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
public class NestedTryBlock {
public static void main(String args[]) {
try {
try {
System.out.println("going to divide");
int b = 39 / 0;
} catch (ArithmeticException e) {
System.out.println(e);
}
try {
int a[] = new int[5];
a[5] = 4;
} catch (ArrayIndexOutOfBoundsException e) {
System.out.println(e);
}
// System.out.println(25 / 0);
System.out.println("other statement");
} catch (Exception e) {
System.out.println("handeled");
}
System.out.println("normal flow..");
}
}
|