Friday, April 12, 2019

exception handling



public class cl {
 public static void main(String args[]) {
  int d = 0;
  int n = 20;
  try {
   int fraction = n / d;
   System.out.println("This line will not be Executed");
  } catch (ArithmeticException e) {
   System.out.println("In the catch Block due to Exception = " + e);
  }
  System.out.println("End Of Main");
 }
}




$javac cl.java
$java -Xmx128M -Xms16M cl
In the catch Block due to Exception = java.lang.ArithmeticException: / by zero
End Of Main

No comments:

Post a Comment