From 19ede4c864153254b405015c7e6799b9d8d0c8f9 Mon Sep 17 00:00:00 2001 From: zhou-hao Date: Mon, 9 Aug 2021 15:21:33 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=9B=BD=E9=99=85=E5=8C=96?= =?UTF-8?q?=E5=8F=82=E6=95=B0=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../org/hswebframework/web/exception/ValidationException.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hsweb-core/src/main/java/org/hswebframework/web/exception/ValidationException.java b/hsweb-core/src/main/java/org/hswebframework/web/exception/ValidationException.java index e37dc7742..fc62966ed 100644 --- a/hsweb-core/src/main/java/org/hswebframework/web/exception/ValidationException.java +++ b/hsweb-core/src/main/java/org/hswebframework/web/exception/ValidationException.java @@ -29,7 +29,7 @@ public class ValidationException extends I18nSupportException { } public ValidationException(String message, List details, Object... args) { - super(message, 400, args); + super(message, args); this.details = details; for (Detail detail : this.details) { detail.translateI18n(args);