1 7 package com.inversoft.beans; 8 9 10 import com.inversoft.util.ReflectionException; 11 12 13 19 public class BeanException extends ReflectionException { 20 21 24 public BeanException() { 25 } 26 27 28 33 public BeanException(String msg) { 34 super(msg); 35 } 36 37 47 public BeanException(String msg, Throwable cause) { 48 super(msg, cause); 49 } 50 51 60 public BeanException(Throwable cause) { 61 super(cause); 62 } 63 64 75 public BeanException(String msg, Throwable cause, Throwable target) { 76 super(msg, cause, target); 77 } 78 79 86 public BeanException(ReflectionException re) { 87 super(re.getMessage(), re.getCause(), re.getTarget()); 88 } 89 } 90 | Popular Tags |