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