package org.theonefx.wcframework.aop.exception;
/**
* @Package org.theonefx.wcframework.aop.exception
* @ClassName: AopInvocationException
* @author 陈曦
* @date 2011-2-18 上午09:48:39
* @Description: AOP调用异常
*/
public class AopInvocationException extends AOPException {
private static final long serialVersionUID = 3579580381954051897L;
public AopInvocationException(String s, Exception e) {
super(s, e);
}
public AopInvocationException(String message) {
super(message);
}
}