/**
 * Thrown when an attempt is made to add an item to a full priority queue.
 * 
 * @version     1.1   June 30, 2000
 * @author      Franck van Breugel
 */
public class PriorityQueueFullException extends RuntimeException 
{

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

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