01: package org.conform.util;
02:
03: public class ReflectionException extends RuntimeException {
04: public ReflectionException() {
05: super ();
06: }
07:
08: public ReflectionException(String msg) {
09: super (msg);
10: }
11:
12: public ReflectionException(String msg, Throwable rootEx) {
13: super(msg, rootEx);
14: }
15: }
|