允许继承 InvalidInputException
parent
0ea6867856
commit
791b3bb14c
|
@ -13,15 +13,15 @@ public class InvalidInputException extends BaseException {
|
||||||
|
|
||||||
public static final String ERROR_CODE = "4040200";
|
public static final String ERROR_CODE = "4040200";
|
||||||
|
|
||||||
private InvalidInputException(String code, String msg) {
|
protected InvalidInputException(String code, String msg) {
|
||||||
super(code, msg);
|
super(code, msg);
|
||||||
}
|
}
|
||||||
|
|
||||||
private InvalidInputException(String code, Throwable cause) {
|
protected InvalidInputException(String code, Throwable cause) {
|
||||||
super(code, cause);
|
super(code, cause);
|
||||||
}
|
}
|
||||||
|
|
||||||
private InvalidInputException(String code, String msg, Throwable cause) {
|
protected InvalidInputException(String code, String msg, Throwable cause) {
|
||||||
super(code, msg, cause);
|
super(code, msg, cause);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue