
package arrayqueue;


public class EmptyQueueException extends RuntimeException {

    /*
     * Creates a new instance of
     * EmptyQueueException without detail message.
     */
    public EmptyQueueException() {
    }

    /*
     * Constructs an instance of
     * EmptyQueueException with the specified detail message.
     *
     * 
     */
    public EmptyQueueException(String msg) {
        super(msg);
    }
}
