From 467ec3cf6ac9cab2e9159744e181bde98dff1c0f Mon Sep 17 00:00:00 2001 From: linbangquan <1437892690@qq.com> Date: Tue, 21 Nov 2023 12:04:21 +0800 Subject: [PATCH] =?UTF-8?q?[=E5=8A=9F=E8=83=BD]=20=E5=90=8E=E7=AB=AF-?= =?UTF-8?q?=E8=AE=BE=E7=BD=AE=E8=A1=A8=E5=8D=95=E7=89=88=E6=9C=AC=E9=BB=98?= =?UTF-8?q?=E8=AE=A4=E5=9C=BA=E6=99=AF=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 关联 #[1029542964068352]后端-设置表单版本默认场景接口 http://192.168.0.96:8090/demo/rdm.html#/task-detail/939050947543040/939050947543050/1029542964068352 --- .../FormVersionSceneNotFoundException.java | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 src/main/java/neatlogic/framework/form/exception/FormVersionSceneNotFoundException.java diff --git a/src/main/java/neatlogic/framework/form/exception/FormVersionSceneNotFoundException.java b/src/main/java/neatlogic/framework/form/exception/FormVersionSceneNotFoundException.java new file mode 100644 index 000000000..dde357edb --- /dev/null +++ b/src/main/java/neatlogic/framework/form/exception/FormVersionSceneNotFoundException.java @@ -0,0 +1,28 @@ +/* +Copyright(c) 2023 NeatLogic Co., Ltd. All Rights Reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. + */ + +package neatlogic.framework.form.exception; + +import neatlogic.framework.exception.core.ApiRuntimeException; + +public class FormVersionSceneNotFoundException extends ApiRuntimeException { + + private static final long serialVersionUID = -3137999499740470766L; + + public FormVersionSceneNotFoundException(String form, String version, String scene) { + super("nffe.formversionscenenotfoundexception.formversionscenenotfoundexception", form, version, scene); + } +} -- Gitee