package stack;

/**
 * Exception throwm when the stack is empty
 * @author Winston Prakash
 */
public class EmptyStackException extends RuntimeException{
    
    /** Creates a new instance of EmptyStackException */
    public EmptyStackException() {
    }
    
}