Searched defs:NumberFormatException (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/java/lang/
H A DNumberFormatException.java38 class NumberFormatException extends IllegalArgumentException { class in inherits:IllegalArgumentException
42 * Constructs a <code>NumberFormatException</code> with no detail message.
44 public NumberFormatException () { method in class:NumberFormatException
49 * Constructs a <code>NumberFormatException</code> with the
54 public NumberFormatException (String s) { method in class:NumberFormatException
59 * Factory method for making a <code>NumberFormatException</code>
64 static NumberFormatException forInputString(String s) {
65 return new NumberFormatException("For input string: \"" + s + "\"");

Completed in 37 milliseconds