Upload presentasi
Presentasi sedang didownload. Silahkan tunggu
1
MATERI PENDUKUNG PENGGUNAAN THROW
Matakuliah : M0074/PROGRAMMING II Tahun : 2005 Versi : 1/0 MATERI PENDUKUNG PENGGUNAAN THROW
3
class DemoEksepsi { public static void methodLain() { try{ throw new ArrayIndexOutOfBoundsException(1); }catch(ArrayIndexOutOfBoundsException e) { System.out.println("Penanganan Eksepsi dalam method methodLain()"); throw e; }
4
public static void main(String[] args) {
try{ methodLain(); }catch(ArrayIndexOutOfBoundsException e) { System.out.println("Penanganan Eksepsi dalam method main()"); }
Presentasi serupa
© 2024 SlidePlayer.info Inc.
All rights reserved.