You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
1.3 KiB
68 lines
1.3 KiB
/*
|
|
* Copyright (c) 1994, 2012, Oracle and/or its affiliates. All rights reserved.
|
|
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
|
|
package java.lang;
|
|
|
|
/**
|
|
* 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.
|
|
*
|
|
* @author unascribed
|
|
* @see java.lang.Integer#parseInt(String)
|
|
* @since JDK1.0
|
|
*/
|
|
public
|
|
class NumberFormatException extends IllegalArgumentException {
|
|
static final long serialVersionUID = -2848938806368998894L;
|
|
|
|
/**
|
|
* Constructs a <code>NumberFormatException</code> with no detail message.
|
|
*/
|
|
public NumberFormatException () {
|
|
super();
|
|
}
|
|
|
|
/**
|
|
* Constructs a <code>NumberFormatException</code> with the
|
|
* specified detail message.
|
|
*
|
|
* @param s the detail message.
|
|
*/
|
|
public NumberFormatException (String s) {
|
|
super (s);
|
|
}
|
|
|
|
/**
|
|
* Factory method for making a <code>NumberFormatException</code>
|
|
* given the specified input which caused the error.
|
|
*
|
|
* @param s the input causing the error
|
|
*/
|
|
static NumberFormatException forInputString(String s) {
|
|
return new NumberFormatException("For input string: \"" + s + "\"");
|
|
}
|
|
}
|