优化异常,并完成单元测试 #3

Merged
ZhouXY108 merged 2 commits from :1.x.x into 1.x.x 2024-12-25 17:12:55 +08:00
Showing only changes of commit 129ace6878 - Show all commits

View File

@ -27,10 +27,18 @@ public final class DataNotExistsException extends Exception {
private static final long serialVersionUID = 6536955800679703111L;
public DataNotExistsException() {
super("数据不存在");
super();
}
public DataNotExistsException(String message) {
super(message);
}
public DataNotExistsException(Throwable cause) {
super(cause);
}
public DataNotExistsException(String message, Throwable cause) {
super(message, cause);
}
}