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.1
Committed: Tue Nov 21 23:48:56 2000 UTC (23 years, 6 months ago) by ajm
Branch: MAIN
Log Message:
added support to detect circular includes
also fixed problem of not passing the system.conf as a file to check for updates

initial checkin of CircularIncludeException....oooo....

File Contents

# Content
1 //---PACKAGE DECLARATION---
2
3 //---IMPORTS---
4
5 /**
6 * This exception is thrown when a repeated
7 * file is detected in an include tree for configurations.
8 *
9 * @author $Author: ajm4 $
10 * @version $Id: ConfigurationManagerServant.java,v 1.3 2000/11/21 21:58:52 ajm4 Exp $
11 */
12 public class CircularIncludeException extends Exception {
13
14 //---FINAL ATTRIBUTES---
15
16 //---STATIC METHODS---
17
18 //---CONSTRUCTORS---
19
20 /**
21 * Takes a string containing the message to be displayed
22 * for the exception.
23 *
24 * @param message the message
25 */
26 public CircularIncludeException(String message){
27 super(message);
28 }
29
30 //---PUBLIC METHODS---
31
32 //---PRIVATE METHODS---
33
34 //---ACCESSOR/MUTATOR METHODS---
35
36 //---ATTRIBUTES---
37
38 //---STATIC ATTRIBUTES---
39
40 }
41
42
43