//PROGRAM 9-14 class ProgramSalah { public static void test() { throw new IllegalAccessException( // penyebab kesalahan "KESALAHAN: illegal access"); } public static void main(String[] args) { try { test(); } catch (Exception e) { System.out.println(e.getMessage()); } System.out.println("Statemen setelah blok try-catch"); } }