//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ //Empty Queue Exception //Description: Defines the exception thrown by a Queue underflow. //CS 284 //Programmed by Jonathan Voris //2/28/06 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ public class EmptyQueueException extends RuntimeException { public EmptyQueueException() { } }