From 0fc05732fc2b444f0a9eebe040dec77609818606 Mon Sep 17 00:00:00 2001 From: fengshuonan Date: Fri, 2 Apr 2021 12:13:28 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=907.0.2=E3=80=91=E3=80=90rule=E3=80=91?= =?UTF-8?q?=E6=9B=B4=E6=96=B0serviceException=E7=9A=84=E8=B5=8B=E5=80=BC?= =?UTF-8?q?=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../roses/kernel/rule/exception/base/ServiceException.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kernel-a-rule/src/main/java/cn/stylefeng/roses/kernel/rule/exception/base/ServiceException.java b/kernel-a-rule/src/main/java/cn/stylefeng/roses/kernel/rule/exception/base/ServiceException.java index 1baa506eb..c6edd7c5d 100644 --- a/kernel-a-rule/src/main/java/cn/stylefeng/roses/kernel/rule/exception/base/ServiceException.java +++ b/kernel-a-rule/src/main/java/cn/stylefeng/roses/kernel/rule/exception/base/ServiceException.java @@ -70,8 +70,8 @@ public class ServiceException extends RuntimeException { */ public ServiceException(String moduleName, String errorCode, String userTip) { super(userTip); - this.errorCode = moduleName; - this.moduleName = errorCode; + this.errorCode = errorCode; + this.moduleName = moduleName; this.userTip = userTip; }