/* Introduction a l'informatique II (ITI 1521)
 * Introduction to Computing II (ITI 1121)
 */

/** An object of the class <code>EmptyQueueException</code> is thrown
 *  by the methods of a <code>Queue</code> to indicate the illegal
 *  situations where a queue was empty.
 *  
 * @author Marcel Turcotte, Universite d'Ottawa/University of Ottawa
 */

public class EmptyQueueException extends RuntimeException {

	private static final long serialVersionUID = -25586723978968324L;

}
