// 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 QueueItemAbsent extends Exception { public QueueItemAbsent() { super(); } public QueueItemAbsent(String s) { super(s); } }