01: /*
02: * Created on Feb 24, 2004
03: */
04: package net.sourceforge.orbroker;
05:
06: /**
07: * General exception wrapping a number of different exceptions
08: * relating to reflection.
09: * @author Nils Kilden-Pedersen
10: */
11: public final class ReflectionException extends BrokerException {
12:
13: /**
14: * @param message
15: */
16: public ReflectionException(String message) {
17: super (message);
18: }
19:
20: /**
21: * @param cause
22: */
23: public ReflectionException(Throwable cause) {
24: super (cause);
25: }
26:
27: /**
28: * @param message
29: * @param cause
30: */
31: public ReflectionException(String message, Throwable cause) {
32: super(message, cause);
33: }
34:
35: }
|