From 05e1b74b46f283a8841bc284e626e19750ff41b4 Mon Sep 17 00:00:00 2001
From: lidongdong <1459917685@qq.com>
Date: 星期五, 25 八月 2023 14:31:38 +0800
Subject: [PATCH] 新增积分商城模块(新增商品   编辑商品  删除商品   商品列表)   修改活动人员统计为0   修改小程序活动报名报错

---
 springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/exceptions/ServiceException.java |    8 +++-----
 1 files changed, 3 insertions(+), 5 deletions(-)

diff --git a/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/exceptions/ServiceException.java b/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/exceptions/ServiceException.java
index fd8f7d5..e61650f 100644
--- a/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/exceptions/ServiceException.java
+++ b/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/exceptions/ServiceException.java
@@ -6,16 +6,15 @@
  * @author: huang.hongfa weixin hhf9596 qq 959656820
  * @create: 2020-12-28 14:13
  **/
-public class ServiceException extends RuntimeException{
+public class ServiceException extends RuntimeException {
 
     private String code;
     private String msg;
     private String data;
+
     public ServiceException() {
         super();
     }
-
-
 
     public ServiceException(String errorMsg) {
         super(errorMsg);
@@ -28,7 +27,7 @@
         this.msg = errorMsg;
     }
 
-    public ServiceException(String errorCode, String errorMsg,String data) {
+    public ServiceException(String errorCode, String errorMsg, String data) {
         super(errorCode);
         this.code = errorCode;
         this.msg = errorMsg;
@@ -40,7 +39,6 @@
         this.code = errorCode;
         this.msg = errorMsg;
     }
-
 
     public String getErrorCode() {
         return code;

--
Gitblit v1.7.1