public class EmptyStackException extends RuntimeException { public EmptyStackException() { super(); } public EmptyStackException(String msg) { super(msg); } } //
public class EmptyStackException extends RuntimeException { public EmptyStackException() { super(); } public EmptyStackException(String msg) { super(msg); } } //