--- projects/cms/source/util/uk/org/iscream/cms/util/InvalidQueueException.java 2001/01/02 03:20:34 1.1 +++ projects/cms/source/util/uk/org/iscream/cms/util/InvalidQueueException.java 2001/01/18 01:55:10 1.2 @@ -1,13 +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 01:55:10 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