/* * @(#)NumberFormatException.java 1.20 03/12/19 * * Copyright 2004 Sun Microsystems, Inc. All rights reserved. * SUN 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 * @version 1.20, 12/19/03 * @see java.lang.Integer#toString() * @since JDK1.0 */ public class NumberFormatException extends IllegalArgumentException { static final long serialVersionUID = -2848938806368998894L; /** * Constructs a NumberFormatException with no detail message. */ public NumberFormatException () { super(); } /** * Constructs a NumberFormatException with the * specified detail message. * * @param s the detail message. */ public NumberFormatException (String s) { super (s); } /** * Factory method for making a NumberFormatException * 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 + "\""); } }