From f00d8d1479c3bc7321c5a3177028a4d42c88f1b1 Mon Sep 17 00:00:00 2001 From: Yohanes <“Y0hanes@outlook.com”> Date: Wed, 26 Jul 2023 13:43:13 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E6=97=A5=E5=BF=97=E6=89=93?= =?UTF-8?q?=E5=8D=B0msg=E4=B8=BAnull?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../dromara/neutrinoproxy/server/base/rest/ServiceException.java | 1 + 1 file changed, 1 insertion(+) diff --git a/neutrino-proxy-server/src/main/java/org/dromara/neutrinoproxy/server/base/rest/ServiceException.java b/neutrino-proxy-server/src/main/java/org/dromara/neutrinoproxy/server/base/rest/ServiceException.java index f04351f8..d7655e2c 100644 --- a/neutrino-proxy-server/src/main/java/org/dromara/neutrinoproxy/server/base/rest/ServiceException.java +++ b/neutrino-proxy-server/src/main/java/org/dromara/neutrinoproxy/server/base/rest/ServiceException.java @@ -42,6 +42,7 @@ public class ServiceException extends RuntimeException { private String msg; public ServiceException(int code, String msg) { + super(msg); this.code = code; this.msg = msg; }