From b13227fa444e821fb4d9ee52bcc86746925fb6e8 Mon Sep 17 00:00:00 2001
From: SZH <szh_hello@163.com>
Date: 星期四, 11 八月 2022 14:01:38 +0800
Subject: [PATCH] 更新配置文件

---
 safePlatfrom-out-web/src/main/java/com/gkhy/safePlatform/config/exception/GlobalExceptionHandler.java |   22 ++++++++++++++++++++++
 1 files changed, 22 insertions(+), 0 deletions(-)

diff --git a/safePlatfrom-out-web/src/main/java/com/gkhy/safePlatform/config/exception/GlobalExceptionHandler.java b/safePlatfrom-out-web/src/main/java/com/gkhy/safePlatform/config/exception/GlobalExceptionHandler.java
index d145f4d..c06d0bd 100644
--- a/safePlatfrom-out-web/src/main/java/com/gkhy/safePlatform/config/exception/GlobalExceptionHandler.java
+++ b/safePlatfrom-out-web/src/main/java/com/gkhy/safePlatform/config/exception/GlobalExceptionHandler.java
@@ -5,6 +5,8 @@
 import com.gkhy.safePlatform.commons.exception.AusinessException;
 import com.gkhy.safePlatform.commons.exception.BusinessException;
 import com.gkhy.safePlatform.commons.vo.ResultVO;
+import com.gkhy.safePlatform.emergency.excepiton.EmergencyException;
+import com.gkhy.safePlatform.incidentManage.exception.AccidentException;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 import org.springframework.security.access.AccessDeniedException;
@@ -21,6 +23,26 @@
 
 
     /**
+     * 事故管理自定义异常
+     */
+    @ResponseBody
+    @ExceptionHandler(value = AccidentException.class)
+    public ResultVO AHandler(AccidentException e) {
+        logger.warn(e.getMessage());
+        return new ResultVO(e.getCode(),e.getMessage());
+    }
+
+    /**
+     * 应急预案自定义异常
+     */
+    @ResponseBody
+    @ExceptionHandler(value = EmergencyException.class)
+    public ResultVO AHandler(EmergencyException e) {
+        logger.warn(e.getMessage());
+        return new ResultVO(e.getCode(),e.getMessage());
+    }
+
+    /**
      * 自定义异常
      */
     @ResponseBody

--
Gitblit v1.9.2