From 59b5ba5a1b2f3b87d4fc1ba94fdc8c0836bd3c5d Mon Sep 17 00:00:00 2001 From: "yadong.zhang" Date: Wed, 17 Jul 2019 06:45:21 +0800 Subject: [PATCH] =?UTF-8?q?:beers:=20=E9=86=89=E9=85=92=E5=86=99=E4=BB=A3?= =?UTF-8?q?=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/java/me/zhyd/oauth/exception/AuthException.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/me/zhyd/oauth/exception/AuthException.java b/src/main/java/me/zhyd/oauth/exception/AuthException.java index 5391568..9393eba 100644 --- a/src/main/java/me/zhyd/oauth/exception/AuthException.java +++ b/src/main/java/me/zhyd/oauth/exception/AuthException.java @@ -17,7 +17,7 @@ public class AuthException extends RuntimeException { } public AuthException(int errorCode, String errorMsg) { - super(errorCode + ":" + errorMsg); + super(errorMsg); this.errorCode = errorCode; this.errorMsg = errorMsg; } -- GitLab