/**
   Exception thrown by ArrayQueue method enqueue when the array is full.
 
   @author      Franck van Breugel
   @version     1.1   May 5, 2000
*/
public class QueueFullException extends RuntimeException 
{

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

    /** 
       Constructs a QueueFullException with the specified error message.
     
       @param errorMessage Error message.
    */
    public QueueFullException(String errorMessage) 
    {
        super(errorMessage);
    }
}
