ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/server/uk/org/iscream/cms/server/core/CircularIncludeException.java
Revision: 1.4
Committed: Tue May 29 17:02:34 2001 UTC (22 years, 11 months ago) by tdb
Branch: MAIN
Branch point for: SERVER_PIRCBOT
Changes since 1.3: +3 -3 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 ajm 1.1 //---PACKAGE DECLARATION---
2 tdb 1.4 package uk.org.iscream.cms.server.core;
3 ajm 1.1
4     //---IMPORTS---
5    
6     /**
7     * This exception is thrown when a repeated
8     * file is detected in an include tree for configurations.
9     *
10 tdb 1.4 * @author $Author: tdb1 $
11     * @version $Id: CircularIncludeException.java,v 1.3 2001/03/14 23:25:29 tdb1 Exp $
12 ajm 1.1 */
13     public class CircularIncludeException extends Exception {
14    
15     //---FINAL ATTRIBUTES---
16    
17     //---STATIC METHODS---
18    
19     //---CONSTRUCTORS---
20    
21     /**
22     * Takes a string containing the message to be displayed
23     * for the exception.
24     *
25     * @param message the message
26     */
27     public CircularIncludeException(String message){
28     super(message);
29     }
30    
31     //---PUBLIC METHODS---
32    
33     //---PRIVATE METHODS---
34    
35     //---ACCESSOR/MUTATOR METHODS---
36    
37     //---ATTRIBUTES---
38    
39     //---STATIC ATTRIBUTES---
40    
41     }
42    
43    
44