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/ComponentStartException.java
Revision: 1.4
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.3: +2 -2 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 ajm 1.1 //---PACKAGE DECLARATION---
2 tdb 1.4 package uk.org.iscream.componentmanager;
3 ajm 1.1
4     //---IMPORTS---
5    
6     /**
7 tdb 1.2 * This exception is thrown when a component fails to start.
8 ajm 1.1 * The failing component MUST give a failing message.
9     *
10 tdb 1.3 * @author $Author: tdb1 $
11 tdb 1.4 * @version $Id: ComponentStartException.java,v 1.3 2001/01/18 23:01:50 tdb1 Exp $
12 ajm 1.1 */
13     public class ComponentStartException 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 ComponentStartException(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