
/**
 * Write a description of class EmptyStackException here.
 * 
 * @author (your name) 
 * @version (a version number or a date)
 */
public class EmptyStackException extends Exception
{
    /**
	 * Constructor for objects of class EmptyStackException
	 */
	public EmptyStackException()
	{
	    super();
	}

    /**
     * Constructor for objects of class EmptyStackException
     */
    public EmptyStackException(String errorMessage)
    {
        super(errorMessage);
    }
}

