fork download
  1. import java.util.*;
  2. import java.lang.*;
  3.  
  4. class Main {
  5. public static void main (String[] args) throws java.lang.Exception {
  6. try {
  7. int x = 0;
  8. x = 1 / x;
  9. } catch (ArithmeticException e) {
  10. System.err.println("ArithmeticException");
  11. } catch (Exception ee) {
  12. System.err.println("Another kind of Exception");
  13. }
  14. }
  15. }
Success #stdin #stdout 0.03s 245632KB
stdin
Standard input is empty
stdout
Standard output is empty