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 Example5
  6. {
  7.     public static void main(String args[])
  8.    {
  9.     try{
  10.         String str=null;
  11.         System.out.println (str.length());
  12.     }
  13.         catch(NullPointerException e){
  14.         System.out.println("NullPointerException..");
  15.     }
  16.    }
  17. }
');