Class java.lang.NumberFormatException
All Packages Class Hierarchy This Package Previous Next Index
Class java.lang.NumberFormatException
Object
|
+----Throwable
|
+----Exception
|
+----RuntimeException
|
+----IllegalArgumentException
|
+----java.lang.NumberFormatException
- public class NumberFormatException
- extends IllegalArgumentException
Thrown to indicate that the application has attempted to convert
a string to one of the numeric types, but that the string does not
have the appropriate format.
- Version:
- 1.12, 07/01/98
- Author:
- unascribed
- Since:
- JDK1.0
- See Also:
- toString()
-
java.lang.NumberFormatException()
- Constructs a
NumberFormatException
with no detail message.
-
java.lang.NumberFormatException(String)
- Constructs a
NumberFormatException
with the
specified detail message.
NumberFormatException
public NumberFormatException()
- Constructs a
NumberFormatException
with no detail message.
- Since:
- JDK1.0
NumberFormatException
public NumberFormatException(String s)
- Constructs a
NumberFormatException
with the
specified detail message.
- Parameters:
- s - the detail message.
- Since:
- JDK1.0
All Packages Class Hierarchy This Package Previous Next Index