| EmptyQueueException.java |
package queue;
/**
* Exception throwm when the stack is empty
* @author Winston Prakash
*/
public class EmptyQueueException extends RuntimeException{
/** Creates a new instance of EmptyStackException */
public EmptyQueueException() {
}
}