0.1.3-SNAPSHOT #1

Merged
ZhouXY108 merged 25 commits from dev into main 2024-08-05 08:59:30 +08:00
Showing only changes of commit 791b3bb14c - Show all commits

View File

@ -13,15 +13,15 @@ public class InvalidInputException extends BaseException {
public static final String ERROR_CODE = "4040200";
private InvalidInputException(String code, String msg) {
protected InvalidInputException(String code, String msg) {
super(code, msg);
}
private InvalidInputException(String code, Throwable cause) {
protected InvalidInputException(String code, Throwable cause) {
super(code, cause);
}
private InvalidInputException(String code, String msg, Throwable cause) {
protected InvalidInputException(String code, String msg, Throwable cause) {
super(code, msg, cause);
}