KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > celtix > BusException


1 package org.objectweb.celtix;
2
3 import org.objectweb.celtix.common.i18n.Message;
4
5 /**
6  * The BusException class is used to indicate a bus exception has occured.
7  */

8 public class BusException extends org.objectweb.celtix.common.i18n.Exception {
9
10     private static final long serialVersionUID = 1L;
11
12     /**
13      * Constructs a <code>BusException</code> with the provided detail message.
14      */

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

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

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