Datasets:

ArXiv:
License:
denisko's picture
cnanged dir structure and removed features file
3e77472
raw
history blame contribute delete
517 Bytes
public class ThrowsDemo {
void division() throws ArithmeticException {
int a = 45;
int b = 0;
int rs;
rs = a / b;
System.out.print("\n\tThe result is : " + rs);
}
public static void main(String[] args) {
ThrowsDemo obj = new ThrowsDemo();
try {
obj.division();
} catch (ArithmeticException ex) {
System.out.print("\n\tError : " + ex.getMessage());
}
System.out.print("\n\tEnd of program.");
}
}