Matakuliah
Tahun
Versi
: M0074/PROGRAMMING II
: 2005
: 1/0
MATERI PENDUKUNG
PENGGUNAAN THROW
1
2
class DemoEksepsi {
public static void methodLain() {
try{
throw new ArrayIndexOutOfBoundsException(1);
}catch(ArrayIndexOutOfBoundsException e) {
System.out.println("Penanganan Eksepsi dalam method methodLain()");
throw e;
}
}
3
public static void main(String[] args) {
try{
methodLain();
}catch(ArrayIndexOutOfBoundsException e) {
System.out.println("Penanganan Eksepsi
dalam method main()");
}
}
}
4
© Copyright 2026 Paperzz