usernotfoundexception.java
来自「用jdbc写的一个存储过程的代码」· Java 代码 · 共 38 行
JAVA
38 行
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 + =
减小字号Ctrl + -
显示快捷键?