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