
// to be thrown when trying to add an item to a full priority queue
public class QueueFullException extends Exception {
    
    public QueueFullException()
    {
        super(" The queue is full ");
    }
}