java.util
Class NoSuchElementException

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

public class NoSuchElementException
extends RuntimeException

Signals that an enumeration is empty.

See Also:
Enumeration

Constructor Summary
NoSuchElementException()
          Constructs a NoSuchElementException with no detail message.
NoSuchElementException(String s)
          Constructs a NoSuchElementException with the specified detail message.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getMessage, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

NoSuchElementException

public NoSuchElementException()
Constructs a NoSuchElementException with no detail message. A detail message is a String that describes this particular exception.


NoSuchElementException

public NoSuchElementException(String s)
Constructs a NoSuchElementException with the specified detail message. A detail message is a String that describes this particular exception.

Parameters:
s - the detail message