/**
   Exception thrown by ArrayStack method push when the array is full.

   @author      Franck van Breugel
   @version     1.1   May 4, 2000
   @see ArrayStack
*/
public class StackFullException extends RuntimeException 
{

    /** 
       Constructs a StackFullException without error message.
     */
    public StackFullException()
    {
        super();
    }

    /** 
       Constructs a StackFullException with the specified error message.

       @param errorMessage Error message.
    */
    public StackFullException(String errorMessage) 
    {
        super(errorMessage);
    }
}
