Datasets:

ArXiv:
License:
denisko's picture
cnanged dir structure and removed features file
3e77472
raw
history blame contribute delete
554 Bytes
/**
* In this example, along with try block, we also enclose exception code in a
* catch block.
*/
public class TryCatchExample5 {
public static void main(String[] args) {
try {
int data1 = 50 / 0; // may throw exception
}
// handling the exception
catch (Exception e) {
System.out.println("Inside catch block:");
// generating the exception in catch block
int data2 = 50 / 0; // may throw exception
}
System.out.println("rest of the code");
}
}