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.
 *
 * @see java.lang.Integer#toString()
 */
public class NumberFormatException extends IllegalArgumentException {

    /**
     * Constructs a <code>NumberFormatException</code> with no detail message.
     */
    public NumberFormatException() {
        throw new RuntimeException();
    }

    /**
     * Constructs a <code>NumberFormatException</code> with the specified detail message.
     *
     * @param s
     *        the detail message.
     */
    public NumberFormatException(String s) {
        throw new RuntimeException();
    }
}
