From 421153adc171545651f200f3986fbd5ad7103fef Mon Sep 17 00:00:00 2001 From: "1437892690@qq.com" <1437892690@qq.com> Date: Tue, 29 Apr 2025 19:23:32 +0800 Subject: [PATCH] =?UTF-8?q?[=E4=BF=AE=E5=A4=8D]=20=E8=AF=81=E4=B9=A6?= =?UTF-8?q?=E5=8F=98=E6=9B=B4=E6=B5=81=E7=A8=8B=E5=B7=A5=E5=8D=95=E6=B5=81?= =?UTF-8?q?=E8=BD=AC=E6=8A=A5=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 关联 #[1410214153125888]证书变更流程工单流转报错 http://192.168.0.96:8090/demo/rdm.html#/bug-detail/939050947543040/939050947543057/1410214153125888 --- .../exception/FormAttributeDataException.java | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 src/main/java/neatlogic/framework/form/exception/FormAttributeDataException.java diff --git a/src/main/java/neatlogic/framework/form/exception/FormAttributeDataException.java b/src/main/java/neatlogic/framework/form/exception/FormAttributeDataException.java new file mode 100644 index 000000000..27ee2e6bf --- /dev/null +++ b/src/main/java/neatlogic/framework/form/exception/FormAttributeDataException.java @@ -0,0 +1,27 @@ +/* + * 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.form.exception; + +import neatlogic.framework.exception.core.ApiRuntimeException; + +public class FormAttributeDataException extends ApiRuntimeException { + + public FormAttributeDataException(String paramName, String tag, String key) { + super(paramName + "参数中存在2个以上元素,tag为" + tag + "且key为" + key); + } +} -- Gitee