//PROGRAM 9-12 class DemoTryBersarang { private static final int MAX = 100; public static void test(int n) { // blok try-catch bagian luar try { double hasil = MAX / n; System.out.println("Hasil bagi : " + hasil); // blok try-catch bagian dalam try { int[] Arr = {1,2,3,4,5}; System.out.println("Arr[" + n + "] : " + Arr[n]); } catch (NullPointerException npe) { System.out.println("Pointer null"); System.out.println(npe); } } catch (ArithmeticException ae) { System.out.println("Terjadi pembagian dengan 0"); System.out.println(ae); } catch (Exception e) { System.out.println("Eksepsi generik..."); System.out.println(e); } } public static void main(String[] args) { test(0); // menimbulkan ArithmeticException System.out.println(); test(20); // menimbulkan ArrayIndexOutOfBoundsException } }