01: package dalma.endpoints.jbi;
02:
03: /**
04: * Represents an error in the JBI layer.
05: *
06: * @author Kohsuke Kawaguchi
07: */
08: public class JBIException extends RuntimeException {
09: public JBIException() {
10: }
11:
12: public JBIException(String message) {
13: super (message);
14: }
15:
16: public JBIException(String message, Throwable cause) {
17: super (message, cause);
18: }
19:
20: public JBIException(Throwable cause) {
21: super(cause);
22: }
23: }
|