01: package org.objectweb.celtix.configuration;
02:
03: import org.objectweb.celtix.common.i18n.Message;
04: import org.objectweb.celtix.common.i18n.UncheckedException;
05:
06: public class ConfigurationException extends UncheckedException {
07:
08: private static final long serialVersionUID = 1L;
09:
10: /**
11: * Constructs a <code>ConfigurationException</code> with the provided detail message.
12: */
13: public ConfigurationException(Message msg) {
14: super (msg);
15: }
16:
17: /**
18: * Constructs a <code>ConfigurationException</code> with the detail message and cause
19: * provided.
20: */
21: public ConfigurationException(Message msg, Throwable cause) {
22: super (msg, cause);
23: }
24:
25: /**
26: * Constructs a <code>ConfigurationException</code> with the provided cause.
27: */
28: public ConfigurationException(Throwable cause) {
29: super(cause);
30: }
31: }
|