Figure 2: The StackException class

class StackException extends Exception
{
    StackException()
    {}
    StackException(String msg)
    {
        super(msg);
    }
}