允许继承 InvalidInputException

pull/1/head
ZhouXY108 2023-09-10 16:42:36 +08:00
parent 0ea6867856
commit 791b3bb14c
1 changed files with 3 additions and 3 deletions

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);
}