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