1 7 8 package java.lang; 9 10 20 public 21 class NumberFormatException extends IllegalArgumentException { 22 static final long serialVersionUID = -2848938806368998894L; 23 24 27 public NumberFormatException () { 28 super(); 29 } 30 31 37 public NumberFormatException (String s) { 38 super (s); 39 } 40 41 47 static NumberFormatException forInputString(String s) { 48 return new NumberFormatException ("For input string: \"" + s + "\""); 49 } 50 } 51 | Popular Tags |