1.0.0-RC2 #19

Merged
zhouxy108 merged 106 commits from 1.x.x into dev 2025-01-07 17:18:48 +08:00
56 changed files with 3385 additions and 1215 deletions
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; private static final long serialVersionUID = 6536955800679703111L;
public DataNotExistsException() { public DataNotExistsException() {
super("数据不存在"); super();
} }
public DataNotExistsException(String message) { public DataNotExistsException(String message) {
super(message); super(message);
} }
public DataNotExistsException(Throwable cause) {
super(cause);
}
public DataNotExistsException(String message, Throwable cause) {
super(message, cause);
}
} }