Java - ArrayIndexOutofBoundsException Program

  1. // ArrayIndexOutOfBoundsException    
  2.     
  3. class ArrayEx    
  4. {    
  5.    public static void main(String args[])    
  6.    {    
  7.       try    
  8.         {    
  9.            int a[]=new int[10];            //Array has only 10     
  10.     
  11. elements    
  12.            a[11] = 9;    
  13.         }    
  14.           catch(ArrayIndexOutOfBoundsException e)    
  15.            {    
  16.              System.out.println     
  17.     
  18. ("\nArrayIndexOutOfBoundsException  : out of array size");    
  19.            }    
  20.    }    
  21. }