Datasets:

ArXiv:
License:
denisko's picture
cnanged dir structure and removed features file
3e77472
raw
history blame contribute delete
266 Bytes
/**
* 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");
}
}