plusone-commons 中新增 BaseRuntimeException 作为基础运行时异常,原 BaseException 作为基础检查型异常。

pull/1/head
ZhouXY108 2023-10-18 11:06:14 +08:00
parent 629a28ff62
commit 04ac9b1c8d
1 changed files with 2 additions and 2 deletions

View File

@ -1,13 +1,13 @@
package xyz.zhouxy.plusone.validator; package xyz.zhouxy.plusone.validator;
import xyz.zhouxy.plusone.commons.exception.BaseException; import xyz.zhouxy.plusone.commons.exception.BaseRuntimeException;
/** /**
* 4040200 - * 4040200 -
* *
* @author <a href="https://gitee.com/zhouxy108">ZhouXY</a> * @author <a href="https://gitee.com/zhouxy108">ZhouXY</a>
*/ */
public class InvalidInputException extends BaseException { public class InvalidInputException extends BaseRuntimeException {
private static final long serialVersionUID = 7956661913360059670L; private static final long serialVersionUID = 7956661913360059670L;