// Object queue exception // // Author Matthew Caryl // // Although under copywrite to the author (Matthew Caryl) this code can be copied and modified for non-commercial // purposes as long as any derivatives contain this condition. package ADT; public class QueueEmpty extends Exception { public QueueEmpty() { super(); } public QueueEmpty(String s) { super(s); } }