Index (Frames) | Index (No Frames) | Package | Package Tree | Tree
java.util

Class NoSuchElementException

java.lang.Object
|
+--java.lang.Throwable
   |
   +--java.lang.Exception
      |
      +--java.lang.RuntimeException
         |
         +--java.util.NoSuchElementException


public class NoSuchElementException

extends RuntimeException

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:See Also:

Constructor Summary

NoSuchElementException()

Constructs a NoSuchElementException with no detail message.
NoSuchElementException(java.lang.String detail)

Constructs a NoSuchElementException with a detail message.

Constructor Details

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: