package org.theonefx.wcframework.aop.exception;
import org.theonefx.wcframework.core.exception.GeneratedException;
/**
* @Package org.theonefx.wcframework.aop.exception
* @ClassName: AOPException
* @author 陈曦
* @date 2011年1月21日9:40:41
* @Description: AOP相关的异常
*/
public class AOPException extends GeneratedException {
private static final long serialVersionUID = 4384415636411163093L;
public AOPException(String message) {
super(message);
}
public AOPException(String message, Throwable cause) {
super(message, cause);
}
public AOPException(Throwable cause) {
super(cause);
}
}