Java - NumberFormatException

  1. // NumberFormatException    
  2.     
  3. class NumEx    
  4. {    
  5.    public static void main(String args[])    
  6.    {    
  7.       try    
  8.         {    
  9.            int a = Integer.parseInt ("Senthil") ;    
  10.            System.out.println(a);    
  11.         }    
  12.           catch(NumberFormatException e)    
  13.             {    
  14.                System.out.println("\nNumberFormatException : String declared in int data type");    
  15.             }    
  16.       }    
  17. }