//PROGRAM 9-15 class DemoThrows { public static void test() throws IllegalAccessException { throw new IllegalAccessException( "KESALAHAN: illegal access"); } public static void main(String[] args) { try { test(); } catch (Exception e) { System.out.println("Eksepsi ditangkap di sini..."); System.out.println(e.getMessage()); } System.out.println("Statemen setelah blok try-catch"); } }