/* * @(#)InputMismatchException.java 1.3 03/12/19 * * Copyright 2004 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ package java.util; /** * Thrown by a Scanner to indicate that the token * retrieved does not match the pattern for the expected type, or * that the token is out of range for the expected type. * * @author unascribed * @version 1.3 12/19/03 * @see java.util.Scanner * @since 1.5 */ public class InputMismatchException extends NoSuchElementException { /** * Constructs a InputMismatchException with null * as its error message string. */ public InputMismatchException() { super(); } /** * Constructs a InputMismatchException, saving a reference * to the error message string s for later retrieval by the * getMessage method. * * @param s the detail message. */ public InputMismatchException(String s) { super(s); } }