unhandled exeption type interupted exception code example
Example: Unhandled exception: java.lang.InterruptedException
try {
Thread.sleep(1500);
} catch(InterruptedException e) {
System.out.println("got interrupted!");
}
try {
Thread.sleep(1500);
} catch(InterruptedException e) {
System.out.println("got interrupted!");
}