1 package com.wikihouse.wildcats0201.jdbcchart.reflectionutil.exception; 2 3 import java.lang.reflect.InvocationTargetException; 4 5 /*** 6 * <B>InvocationTargetExceptionWrapper </B>. 7 * 8 * @author $Author: wildcats $ 9 * @version $Revision: 5 $ 10 */ 11 public class InvocationTargetExceptionWrapper extends RuntimeException { 12 13 private static final long serialVersionUID = -3928826363610476302L; 14 15 public InvocationTargetExceptionWrapper(InvocationTargetException e) { 16 super(e); 17 } 18 19 }