📄 acegiexceptionhandler.java.svn-base
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -