/* * Copyright (c) 2003, 2008, Oracle and/or its affiliates. All rights reserved. * ORACLE 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 * @see java.util.Scanner * @since 1.5 */ public class InputMismatchException extends NoSuchElementException { private static final long serialVersionUID = 8811230760997066428L; /** * Constructs an InputMismatchException with null * as its error message string. */ public InputMismatchException() { super(); } /** * Constructs an 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); } }