01: package dalma.container.model;
02:
03: /**
04: * Signals an error during the injection.
05: *
06: * @author Kohsuke Kawaguchi
07: */
08: public class InjectionException extends Exception {
09: public InjectionException(String message) {
10: super (message);
11: }
12:
13: public InjectionException(String message, Throwable cause) {
14: super (message, cause);
15: }
16:
17: public InjectionException(Throwable cause) {
18: super(cause);
19: }
20: }
|