FileDocCategorySizeDatePackage
InputMismatchException.javaAPI DocJava SE 5 API1064Fri Aug 26 14:57:22 BST 2005java.util

InputMismatchException

public class InputMismatchException extends NoSuchElementException
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

Fields Summary
Constructors Summary
public InputMismatchException()
Constructs a InputMismatchException with null as its error message string.

	super();
    
public InputMismatchException(String s)
Constructs a InputMismatchException, saving a reference to the error message string s for later retrieval by the getMessage method.

param
s the detail message.

	super(s);
    
Methods Summary