acegiexceptionhandler.java
来自「EasyJWeb是基于java技术」· Java 代码 · 共 14 行
JAVA
14 行
package com.easyjf.web.security.acegi;
import java.lang.reflect.Method;
import com.easyjf.web.interceptor.ExceptionInterceptor;
public class AcegiExceptionHandler implements ExceptionInterceptor {
public boolean handle(Throwable e, Object target, Method method,
Object[] args) throws Exception{
if(e instanceof org.acegisecurity.AcegiSecurityException)throw (Exception)e;
return false;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?