/* Introduction a l'informatique II (ITI 1521) * Introduction to Computing II (ITI 1121) */ /** An object of the class EmptyQueueException is thrown * by the methods of a Queue 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; }