NoSuchElementExceptionpublic class NoSuchElementException extends RuntimeException A {@code NoSuchElementException} is thrown when trying to retrieve an element
past the end of an Enumeration, or the first or last element from an empty
Vector. |
Fields Summary |
---|
private static final long | serialVersionUID |
Constructors Summary |
---|
public NoSuchElementException()Constructs a new {@code NoSuchElementException} with the current stack
trace filled in.
super();
| public NoSuchElementException(String detailMessage)Constructs a new {@code NoSuchElementException} with the current stack
trace and message filled in.
super(detailMessage);
|
|