From 8677f78a5679e3ede0f929c4aa6df96ecd22b83a Mon Sep 17 00:00:00 2001 From: 疯狂的狮子Li <15040126243@163.com> Date: 星期一, 08 四月 2024 11:07:04 +0800 Subject: [PATCH] !511 update 更新EasyRetry v3.1.1 => v3.2.0 更新数据库sql脚本,添加表前缀er_支持 Merge pull request !511 from 秋辞未寒/dev_easyretry --- ruoyi-common/ruoyi-common-core/src/main/java/org/dromara/common/core/exception/ServiceException.java | 13 +------------ 1 files changed, 1 insertions(+), 12 deletions(-) diff --git a/ruoyi-common/ruoyi-common-core/src/main/java/org/dromara/common/core/exception/ServiceException.java b/ruoyi-common/ruoyi-common-core/src/main/java/org/dromara/common/core/exception/ServiceException.java index 4fb097a..e9dc6ec 100644 --- a/ruoyi-common/ruoyi-common-core/src/main/java/org/dromara/common/core/exception/ServiceException.java +++ b/ruoyi-common/ruoyi-common-core/src/main/java/org/dromara/common/core/exception/ServiceException.java @@ -1,9 +1,6 @@ package org.dromara.common.core.exception; -import lombok.AllArgsConstructor; -import lombok.Data; -import lombok.EqualsAndHashCode; -import lombok.NoArgsConstructor; +import lombok.*; import java.io.Serial; @@ -45,17 +42,9 @@ this.code = code; } - public String getDetailMessage() { - return detailMessage; - } - @Override public String getMessage() { return message; - } - - public Integer getCode() { - return code; } public ServiceException setMessage(String message) { -- Gitblit v1.9.3