/*
 * File: QueueEmptyException.java
 * This exception gets thrown when an attempt is made
 *  to remove an element from an empty Queue.
 */


public class QueueEmptyException  extends RuntimeException {

    public QueueEmptyException(String msg){
        super(msg);
    }
}
