preinterceptorexception.java
来自「办公自动化项目」· Java 代码 · 共 31 行
JAVA
31 行
package hong.javanet.frame;
import java.util.*;
public class PreInterceptorException extends RuntimeException {
protected List interceptors;
public PreInterceptorException() {
}
public PreInterceptorException(String p0) {
super(p0);
}
public PreInterceptorException(Throwable p0) {
super(p0);
}
public PreInterceptorException(String p0, Throwable p1) {
super(p0, p1);
}
public List getInterceptors() {
return interceptors;
}
public void setInterceptors(List interceptors) {
this.interceptors = interceptors;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?