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.1
Committed: Mon Mar 5 23:16:05 2001 UTC (23 years, 2 months ago) by tdb
Branch: MAIN
Log Message:
This new Exception is thrown when a Configuration Property cannot be found
(ie. it's not in the requested config). The idea behind this is to ensure good
coding practices are deployed when make use of the ConfigurationProxy class.

File Contents

# User Rev Content
1 tdb 1.1 //---PACKAGE DECLARATION---
2     package uk.ac.ukc.iscream.componentmanager;
3    
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     * @author $Author$
13     * @version $Id$
14     */
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     }