KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > celtix > configuration > ConfigurationException


1 package org.objectweb.celtix.configuration;
2
3 import org.objectweb.celtix.common.i18n.Message;
4 import org.objectweb.celtix.common.i18n.UncheckedException;
5
6 public class ConfigurationException extends UncheckedException {
7
8     private static final long serialVersionUID = 1L;
9
10
11     /**
12      * Constructs a <code>ConfigurationException</code> with the provided detail message.
13      */

14     public ConfigurationException(Message msg) {
15         super(msg);
16     }
17
18     /**
19      * Constructs a <code>ConfigurationException</code> with the detail message and cause
20      * provided.
21      */

22     public ConfigurationException(Message msg, Throwable JavaDoc cause) {
23         super(msg, cause);
24     }
25
26     /**
27      * Constructs a <code>ConfigurationException</code> with the provided cause.
28      */

29     public ConfigurationException(Throwable JavaDoc cause) {
30         super(cause);
31     }
32 }
33
Popular Tags