From 8545dd714f100ab2361aae640727e3b402372aac Mon Sep 17 00:00:00 2001 From: ZhouXY108 Date: Sat, 18 Feb 2023 12:07:50 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20plusone-commons=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .vscode/settings.json | 3 ++- pom.xml | 2 +- .../xyz/zhouxy/plusone/validator/InvalidInputException.java | 4 ++-- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index c5f3f6b..13f5352 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,3 +1,4 @@ { - "java.configuration.updateBuildConfiguration": "interactive" + "java.configuration.updateBuildConfiguration": "automatic", + "java.dependency.packagePresentation": "hierarchical" } \ No newline at end of file diff --git a/pom.xml b/pom.xml index 74da7e2..8c9f4fd 100644 --- a/pom.xml +++ b/pom.xml @@ -21,7 +21,7 @@ xyz.zhouxy.plusone plusone-commons - 0.0.1-SNAPSHOT + 0.1.0-SNAPSHOT junit diff --git a/src/main/java/xyz/zhouxy/plusone/validator/InvalidInputException.java b/src/main/java/xyz/zhouxy/plusone/validator/InvalidInputException.java index 5a23431..b770344 100644 --- a/src/main/java/xyz/zhouxy/plusone/validator/InvalidInputException.java +++ b/src/main/java/xyz/zhouxy/plusone/validator/InvalidInputException.java @@ -1,13 +1,13 @@ package xyz.zhouxy.plusone.validator; -import xyz.zhouxy.plusone.exception.PlusoneException; +import xyz.zhouxy.plusone.exception.BaseException; /** * 4040200 - 无效的用户输入 * * @author ZhouXY */ -public class InvalidInputException extends PlusoneException { +public class InvalidInputException extends BaseException { private static final long serialVersionUID = 7956661913360059670L;