EmptyStackExceptionpublic class EmptyStackException extends RuntimeException An {@code EmptyStackException} is thrown if the pop/peek method of a stack is
executed on an empty stack. |
Fields Summary |
---|
private static final long | serialVersionUID |
Constructors Summary |
---|
public EmptyStackException()Constructs a new {@code EmptyStackException} with the stack trace filled
in.
super();
|
|