ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/util/uk/org/iscream/cms/util/InvalidQueueException.java
Revision: 1.4
Committed: Tue May 29 17:02:35 2001 UTC (22 years, 11 months ago) by tdb
Branch: MAIN
Branch point for: SERVER_PIRCBOT
Changes since 1.3: +2 -2 lines
Log Message:
Major change in the java package naming. This has been held off for some time
now, but it really needed doing. The future packaging of all i-scream products
will be;

uk.org.iscream.<product>.<subpart>.*

In the case of the central monitoring system server this will be;

uk.org.iscream.cms.server.*

The whole server has been changed to follow this structure, and tested to a
smallish extent. Further changes in other parts of the CMS will follow.

File Contents

# User Rev Content
1 tdb 1.1 //---PACKAGE DECLARATION---
2 tdb 1.4 package uk.org.iscream.cms.server.util;
3 tdb 1.1
4 tdb 1.2 //---IMPORTS---
5    
6     /**
7     * This exception is thrown if a "consumer" makes a request
8     * for a queue that does not exist. This should not happen
9     * if the consumer makes proper use of the available queue
10     * management methods.
11     *
12 tdb 1.3 * @author $Author: tdb1 $
13 tdb 1.4 * @version $Id: InvalidQueueException.java,v 1.3 2001/03/14 23:25:29 tdb1 Exp $
14 tdb 1.2 */
15 tdb 1.1 public class InvalidQueueException extends Exception {
16 tdb 1.2
17     //---FINAL ATTRIBUTES---
18    
19     //---STATIC METHODS---
20    
21     //---CONSTRUCTORS---
22 tdb 1.1
23 tdb 1.2 /**
24     * Takes a string containing a message detailing
25     * specifics about the exception.
26     *
27     * @param message the exception specifics
28     */
29 tdb 1.1 public InvalidQueueException(String message){
30     super(message);
31     }
32    
33 tdb 1.2 //---PUBLIC METHODS---
34    
35     //---PRIVATE METHODS---
36    
37     //---ACCESSOR/MUTATOR METHODS---
38    
39     //---ATTRIBUTES---
40 tdb 1.1
41 tdb 1.2 //---STATIC ATTRIBUTES---
42 tdb 1.1
43 tdb 1.2 }