* Copyright (c) 1998 Massachusetts Institute of Technology * * @see Queue */ public class EmptyQueueException extends RuntimeException { public EmptyQueueException() { super(); } public EmptyQueueException(String msg) { super(msg); } } /* * $Log: EmptyQueueException.java,v $ * Revision 1.1.1.1 2002/06/05 21:56:32 root * CS101 comes to Olin finally. * * Revision 1.1 2000/04/24 22:17:18 nathanw * Bulk reorganization * * Revision 1.3 1998/07/24 17:19:25 tparnell * Placate new javadoc behavior * * Revision 1.2 1998/07/17 02:41:47 tparnell * Added some javadoc and logging * */