Stack-Repo
/
data
/train
/akash-coded
/FSD_Java
/Lesson-3
/Exception Handling
/Examples
/TryCatchExample3.java
/** | |
* In this example, we also kept the code in a try block that will throw an | |
* exception. | |
*/ | |
public class TryCatchExample3 { | |
public static void main(String[] args) { | |
try { | |
int data = 50 / 0; // may throw exception | |
// if exception occurs, the remaining statement will not exceute | |
System.out.println("rest of the code"); | |
} | |
// handling the exception | |
catch (ArithmeticException e) { | |
System.out.println(e); | |
} | |
} | |
} |