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/ComponentCORBAException.java
Revision: 1.3
Committed: Tue May 29 17:02:34 2001 UTC (22 years, 11 months ago) by tdb
Branch: MAIN
Branch point for: SERVER_PIRCBOT
Changes since 1.2: +3 -3 lines
Log Message:
Major change in the java package naming. This has been held off for some time
now, but it really needed doing. The future packaging of all i-scream products
will be;

uk.org.iscream.<product>.<subpart>.*

In the case of the central monitoring system server this will be;

uk.org.iscream.cms.server.*

The whole server has been changed to follow this structure, and tested to a
smallish extent. Further changes in other parts of the CMS will follow.

File Contents

# Content
1 //---PACKAGE DECLARATION---
2 package uk.org.iscream.cms.server.componentmanager;
3
4 //---IMPORTS---
5
6 /**
7 * This exception is thrown when a component has
8 * CORBA problems. Typically (as this is unchecked)
9 * only the ComponentManager deals with this.
10 *
11 * @author $Author: tdb1 $
12 * @version $Id: ComponentCORBAException.java,v 1.2 2001/03/14 23:25:29 tdb1 Exp $
13 */
14 public class ComponentCORBAException extends RuntimeException {
15
16 //---FINAL ATTRIBUTES---
17
18 //---STATIC METHODS---
19
20 //---CONSTRUCTORS---
21
22 /**
23 * Takes a string containing the message to be displayed
24 * for the exception.
25 *
26 * @param message the message
27 */
28 public ComponentCORBAException(String message){
29 super(message);
30 }
31
32 //---PUBLIC METHODS---
33
34 //---PRIVATE METHODS---
35
36 //---ACCESSOR/MUTATOR METHODS---
37
38 //---ATTRIBUTES---
39
40 //---STATIC ATTRIBUTES---
41
42 }
43
44
45