--- 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 2002/05/21 16:47:19 1.6 @@ -1,13 +1,63 @@ +/* + * i-scream central monitoring system + * http://www.i-scream.org.uk + * Copyright (C) 2000-2002 i-scream + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + //---PACKAGE DECLARATION--- -package uk.ac.ukc.iscream.util; +package uk.org.iscream.cms.server.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.6 2002/05/21 16:47:19 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