fork download
  1. class Example2{
  2. public static void main(String args[]){
  3. try{
  4. int a[]=new int[7];
  5. a[4]=30/0;
  6. System.out.println("First print statement in try block");
  7. }
  8.  
  9. System.out.println("Warning: ArrayIndexOutOfBoundsException");
  10. }
  11. catch(Exception e){
  12. System.out.println("Warning: Some Other exception");
  13. }
  14. System.out.println("Out of try-catch block...");
  15. }
  16. }
Success #stdin #stdout 0.12s 320576KB
stdin
Standard input is empty
stdout
Warning: Some Other exception
Out of try-catch block...