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 0000000000000000000000000000000000000000..27ee2e6bf35fc8b0a5f721a60d23daad8a453fb3 --- /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); + } +}