java.util
Class NoSuchElementException
java.lang.Object
|
+--java.lang.Throwable
|
+--java.lang.Exception
|
+--java.lang.RuntimeException
|
+--java.util.NoSuchElementException
Exception thrown when an attempt is made to access an element that does not
exist. This exception is thrown by the Enumeration, Iterator and
ListIterator classes if the nextElement, next or previous method goes
beyond the end of the list of elements that are being accessed. It is also
thrown by Vector and Stack when attempting to access the first or last
element of an empty collection.
Since:Authors:- Warren Levy <warrenl@cygnus.com>
- Eric Blake <ebb9@email.byu.edu>
See Also:
NoSuchElementException
public NoSuchElementException()
Constructs a NoSuchElementException with no detail message.
NoSuchElementException
public NoSuchElementException(java.lang.String detail)
Constructs a NoSuchElementException with a detail message.
Parameters: