March 2005
Intermediate to advanced
1254 pages
104h 21m
English
InputMismatchException
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.
Figure 16-34. java.util.InputMismatchException
public class InputMismatchException extends NoSuchElementException { // Public Constructors public InputMismatchException( ); public InputMismatchException(String s); }