📄 usernotfoundexception.java
字号:
package com.bluedot.exceptions;
import java.util.List;
public class UserNotFoundException extends RuntimeException {
private List list;
public UserNotFoundException(String msg) {
super(msg);
}
public UserNotFoundException(String msg, Throwable e) {
super(msg, e);
}
public UserNotFoundException() {
super();
}
public UserNotFoundException(List list) {
this.list = list;
}
public UserNotFoundException(List list, String msg) {
super(msg);
this.list = list;
}
public List getList() {
return list;
}
public void setList(List list) {
this.list = list;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -