fork(2) download
  1. /* package whatever; // don't place package name! */
  2.  
  3.  
  4. /* Name of the class has to be "Main" only if the class is public. */
  5. class Ideone
  6. {
  7. public static void main (String[] args) throws java.lang.Exception
  8. {
  9. try {
  10. new Long("");
  11. System.out.println("NumberFormatException is an IllegalArgumentException");
  12. }
  13. }
  14. }
Success #stdin #stdout 0.06s 380224KB
stdin
Standard input is empty
stdout
NumberFormatException is an IllegalArgumentException