/**
   Thrown when an attempt is made to add an item to a full priority queue.
  
   @author      Franck van Breugel
   @version     1.1   June 30, 2000
*/
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);
    }
}
