ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/server/uk/org/iscream/cms/server/componentmanager/PropertyNotFoundException.java
Revision: 1.2
Committed: Wed Mar 14 23:25:29 2001 UTC (23 years, 2 months ago) by tdb
Branch: MAIN
CVS Tags: PROJECT_COMPLETION
Changes since 1.1: +3 -3 lines
Log Message:
The whole server package structure has been changed.
Old Package: uk.ac.ukc.iscream.*
New Package: uk.org.iscream.*

File Contents

# User Rev Content
1 tdb 1.1 //---PACKAGE DECLARATION---
2 tdb 1.2 package uk.org.iscream.componentmanager;
3 tdb 1.1
4     //---IMPORTS---
5    
6     /**
7     * This Exception is thrown when a requested property cannot
8     * be found by the configuration system. Although a null has
9     * previously performed this task, and Exception forces good
10     * handling of situations where there could be an error.
11     *
12 tdb 1.2 * @author $Author: tdb1 $
13     * @version $Id: PropertyNotFoundException.java,v 1.1 2001/03/05 23:16:05 tdb1 Exp $
14 tdb 1.1 */
15     public class PropertyNotFoundException extends Exception {
16    
17     //---FINAL ATTRIBUTES---
18    
19     //---STATIC METHODS---
20    
21     //---CONSTRUCTORS---
22    
23     /**
24     * Takes a string containing a message detailing
25     * specifics about the exception.
26     *
27     * @param message the exception specifics
28     */
29     public PropertyNotFoundException(String message){
30     super(message);
31     }
32    
33     //---PUBLIC METHODS---
34    
35     //---PRIVATE METHODS---
36    
37     //---ACCESSOR/MUTATOR METHODS---
38    
39     //---ATTRIBUTES---
40    
41     //---STATIC ATTRIBUTES---
42    
43     }