1.0.0-RC2 #19

Merged
ZhouXY108 merged 106 commits from 1.x.x into dev 2025-01-07 17:18:48 +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);
}
}