document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. /**
  2.  * @author (Andika Nugrahanto)
  3.  * @version (22/12/2020)
  4.  */
  5. public class Example2
  6. {
  7.     public static void main(String args[])
  8.    {
  9.       try{
  10.         int a[]=new int[10];
  11.         //Array has only 10 elements
  12.         a[11] = 9;
  13.       }
  14.       catch(ArrayIndexOutOfBoundsException e){
  15.          System.out.println ("ArrayIndexOutOfBounds");
  16.       }
  17.    }
  18. }
');