KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > sape > carbon > services > carbonmanagement > ConfigurationNotFoundException


1 package org.sape.carbon.services.carbonmanagement;
2
3 /**
4  * Thrown when a Configuration is not found in calls to viewConfigurationXML
5  * and refreshConfiguration.
6  *
7  * <br>Copyright 2002 Sapient
8  * @since carbon 1.2
9  * @author Douglas Voet, Dec 19, 2002
10  * @version $Revision: 1.5 $($Author: jreed $ / $Date: 2003/04/15 18:53:53 $)
11  */

12 public class ConfigurationNotFoundException
13         extends CarbonManagementServiceException {
14
15
16     /**
17      * Constructor for ConfigurationNotFoundException.
18      *
19      * @param sourceClass The source class of this exception
20      * @param message string information relating to this exception
21      */

22     public ConfigurationNotFoundException(Class JavaDoc sourceClass, String JavaDoc message) {
23         super(sourceClass, message);
24     }
25
26     /**
27      * Constructor for ConfigurationNotFoundException.
28      *
29      * @param sourceClass The source class of this exception
30      * @param message string information relating to this exception
31      * @param cause a throwable that can be considered the cause
32      * of the current exception (used in levelizing exceptions)
33      */

34     public ConfigurationNotFoundException(
35         Class JavaDoc sourceClass,
36         String JavaDoc message,
37         Throwable JavaDoc cause) {
38         super(sourceClass, message, cause);
39     }
40
41 }
42
Popular Tags