Java - StringOutOfBoundsException

  1. // StringIndexOutOfBoundsException    
  2.     
  3. class StrEx    
  4. {    
  5.    public static void main(String args[])    
  6.    {    
  7.       try     
  8.         {    
  9.           String str="Senthilvelan";    
  10.           System.out.println(str.length());;    
  11.     
  12.           char c = str.charAt(0);    
  13.           c = str.charAt(20);    
  14.           System.out.println("\n"+c);    
  15.       }    
  16.         catch(StringIndexOutOfBoundsException e)    
  17.           {    
  18.              System.out.println("\nStringIndexOutOfBoundsException : less than of  the given String");    
  19.           }    
  20.    }    
  21. }