01: package dalma;
02:
03: /**
04: * Represents a generally unexpected error condition that cannot be meaningfully recovered.
05: *
06: * @author Kohsuke Kawaguchi
07: */
08: public class DalmaException extends RuntimeException {
09: public DalmaException(String message) {
10: super (message);
11: }
12:
13: public DalmaException(String message, Throwable cause) {
14: super (message, cause);
15: }
16:
17: public DalmaException(Throwable cause) {
18: super(cause);
19: }
20: }
|