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