--- experimental/server/Queue/InvalidQueueException.java 2001/01/02 01:53:27 1.1 +++ experimental/server/Queue/InvalidQueueException.java 2001/01/18 22:08:02 1.2 @@ -1,10 +1,43 @@ +//---PACKAGE DECLARATION--- +package uk.ac.ukc.iscream.util; + +//---IMPORTS--- + +/** + * This exception is thrown if a "consumer" makes a request + * for a queue that does not exist. This should not happen + * if the consumer makes proper use of the available queue + * management methods. + * + * @author $Author: tdb $ + * @version $Id: InvalidQueueException.java,v 1.2 2001/01/18 22:08:02 tdb Exp $ + */ public class InvalidQueueException extends Exception { + +//---FINAL ATTRIBUTES--- + +//---STATIC METHODS--- + +//---CONSTRUCTORS--- + /** + * Takes a string containing a message detailing + * specifics about the exception. + * + * @param message the exception specifics + */ public InvalidQueueException(String message){ super(message); } - -} +//---PUBLIC METHODS--- +//---PRIVATE METHODS--- +//---ACCESSOR/MUTATOR METHODS--- + +//---ATTRIBUTES--- + +//---STATIC ATTRIBUTES--- + +} \ No newline at end of file