Stack-Repo
/
data
/train
/akash-coded
/FSD_Java
/Lesson-3
/Exception Handling
/Examples
/UncheckedExceptionExample.java
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"); | |
} | |
} | |