File size: 266 Bytes
c574d3a |
1 2 3 4 5 6 7 8 9 10 11 |
/**
* Let's try to understand the problem if we don't use a try-catch block.
*/
public class TryCatchExample1 {
public static void main(String[] args) {
int data = 50 / 0; // may throw exception
System.out.println("rest of the code");
}
}
|