File size: 239 Bytes
c574d3a |
1 2 3 4 5 6 7 8 9 |
public class UncheckedExceptionExample {
public static void main(String[] args) {
int[] arr = { 1, 3, 5, 7 };
System.out.println(arr[10]); // may throw exception
System.out.println("rest of the code");
}
}
|