An exception of this type is thrown by a
Scanner
that
is not of the expected type or is out of range. Note that the
Scanner implements the Iterator
interface, and this exception is a subclass of
NoSuchElementException, which is thrown by
Iterator.next( ) when no more elements are
available.

public class InputMismatchException extends NoSuchElementException {
// Public Constructors
public InputMismatchException( );
public InputMismatchException(String s);
}