ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/util/uk/org/iscream/cms/util/NotInitialisedException.java
Revision: 1.2
Committed: Thu Nov 30 02:38:17 2000 UTC (23 years, 5 months ago) by ajm
Branch: MAIN
Branch point for: SERVER_PACKAGEBUILD
Changes since 1.1: +2 -2 lines
Log Message:
Changed package structure
uk.ac.ukc.iscream.refman and xml -> uk.ac.ukc.iscream.util

File Contents

# User Rev Content
1 ajm 1.1 //---PACKAGE DECLARATION---
2 ajm 1.2 package uk.ac.ukc.iscream.util;
3 ajm 1.1
4     //---IMPORTS---
5    
6     /**
7     * This exception is thrown when a singleton class has
8     * not been intialised but is accessed.
9     *
10     * @author $Author: ajm4 $
11 ajm 1.2 * @version $Id: NotInitialisedException.java,v 1.1 2000/11/30 00:54:27 ajm4 Exp $
12 ajm 1.1 */
13     public class NotInitialisedException extends RuntimeException {
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 NotInitialisedException(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