From ce2991cd8dccca29b105a30e8f7f74b8b034a18f Mon Sep 17 00:00:00 2001 From: lvzk <897706680@qq.com> Date: Fri, 8 Aug 2025 16:27:51 +0800 Subject: [PATCH] =?UTF-8?q?[=E5=8A=9F=E8=83=BD]=E5=88=9B=E5=BB=BA=E8=87=AA?= =?UTF-8?q?=E5=8A=A8=E5=8C=96=E4=BD=9C=E4=B8=9A=E8=A1=A5=E5=85=85=E5=A6=82?= =?UTF-8?q?=E6=9E=9C=E5=BC=95=E7=94=A8=E4=BD=9C=E4=B8=9A=E5=8F=82=E6=95=B0?= =?UTF-8?q?=EF=BC=8C=E4=BD=86=E6=98=AF=E4=BD=9C=E4=B8=9A=E5=8F=82=E6=95=B0?= =?UTF-8?q?=E6=B2=A1=E4=BC=A0=E6=88=96=E8=80=85=E4=B8=8D=E5=AD=98=E5=9C=A8?= =?UTF-8?q?=E7=9A=84=E8=AF=A6=E7=BB=86=E5=BC=82=E5=B8=B8=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../job/JobParamNodeNullException.java | 41 +++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 src/main/java/neatlogic/framework/autoexec/exception/job/JobParamNodeNullException.java diff --git a/src/main/java/neatlogic/framework/autoexec/exception/job/JobParamNodeNullException.java b/src/main/java/neatlogic/framework/autoexec/exception/job/JobParamNodeNullException.java new file mode 100644 index 00000000..17e8d74c --- /dev/null +++ b/src/main/java/neatlogic/framework/autoexec/exception/job/JobParamNodeNullException.java @@ -0,0 +1,41 @@ +/* + * Copyright (C) 2025 深圳极向量科技有限公司 All Rights Reserved. + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + +package neatlogic.framework.autoexec.exception.job; + +import neatlogic.framework.exception.core.ApiRuntimeException; + +public class JobParamNodeNullException extends ApiRuntimeException { + + private static final long serialVersionUID = -5243209742690310814L; + + public JobParamNodeNullException(String phaseName, Object key) { + super("执行目标非法,阶段“{0}”引用{1}", phaseName, key); + } + + public JobParamNodeNullException(int groupId, Object key) { + super("执行目标非法,阶段组“{0}”引用{1}", groupId, key); + } + + public JobParamNodeNullException(String key, Integer isJob) { + super("执行目标非法,引用{0}", key); + } + + public JobParamNodeNullException(String key) { + super("nfaej.jobparamnullexception.jobparamnullexception", key); + } +} -- Gitee