From eab4beae57b7399133f079e8c702053cde39890a Mon Sep 17 00:00:00 2001 From: "1437892690@qq.com" <1437892690@qq.com> Date: Thu, 29 May 2025 12:17:02 +0800 Subject: [PATCH] =?UTF-8?q?[=E5=8A=9F=E8=83=BD]=20IT=E6=9C=8D=E5=8A=A1?= =?UTF-8?q?=E5=88=A0=E9=99=A4=E4=B8=80=E4=B8=AA=E5=BA=9F=E5=BC=83=E6=8E=A5?= =?UTF-8?q?=E5=8F=A3processtask/step/get/backup?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 关联 #[1431801807994880]IT服务删除一个废弃接口processtask/step/get/backup http://192.168.0.96:8090/demo/rdm.html#/story-detail/939050947543040/939050947543042/1431801807994880 --- .../ProcessTaskNextStepIllegalException.java | 4 +-- .../ProcessTaskViewDeniedException.java | 35 ------------------- 2 files changed, 2 insertions(+), 37 deletions(-) delete mode 100644 src/main/java/neatlogic/framework/process/exception/processtask/ProcessTaskViewDeniedException.java diff --git a/src/main/java/neatlogic/framework/process/exception/processtask/ProcessTaskNextStepIllegalException.java b/src/main/java/neatlogic/framework/process/exception/processtask/ProcessTaskNextStepIllegalException.java index c4f9e50d..91685615 100644 --- a/src/main/java/neatlogic/framework/process/exception/processtask/ProcessTaskNextStepIllegalException.java +++ b/src/main/java/neatlogic/framework/process/exception/processtask/ProcessTaskNextStepIllegalException.java @@ -7,11 +7,11 @@ public class ProcessTaskNextStepIllegalException extends ProcessTaskRuntimeExcep private static final long serialVersionUID = -1358428490096490765L; public ProcessTaskNextStepIllegalException(String processTaskStepName, String processTaskNextStepName) { - super("{1}不是步骤:{0}的下一步骤", processTaskStepName, processTaskNextStepName); + super("nfpep.processtasknextstepillegalexception.processtasknextstepillegalexception", processTaskStepName, processTaskNextStepName); } public ProcessTaskNextStepIllegalException(Long processTaskId) { - super("exception.process.processtasknextstepillegalexception.1", processTaskId); + super("nfpep.processtasknextstepillegalexception.processtasknextstepillegalexception_a", processTaskId); } } diff --git a/src/main/java/neatlogic/framework/process/exception/processtask/ProcessTaskViewDeniedException.java b/src/main/java/neatlogic/framework/process/exception/processtask/ProcessTaskViewDeniedException.java deleted file mode 100644 index 62cd31cc..00000000 --- a/src/main/java/neatlogic/framework/process/exception/processtask/ProcessTaskViewDeniedException.java +++ /dev/null @@ -1,35 +0,0 @@ -/*Copyright (C) $today.year 深圳极向量科技有限公司 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.process.exception.processtask; - -import neatlogic.framework.exception.type.PermissionDeniedException; - -/** - * @author linbq - * @since 2021/12/13 15:34 - **/ -public class ProcessTaskViewDeniedException extends PermissionDeniedException { - - private static final long serialVersionUID = 6148939113449322484L; - - public ProcessTaskViewDeniedException(){ - super("exception.process.processtaskviewdeniedexception"); - } - - public ProcessTaskViewDeniedException(String channelName){ - super("exception.process.processtaskviewdeniedexception.1", channelName); - } -} -- Gitee