|
@@ -31,7 +31,7 @@ public class BizException extends RuntimeException {
|
|
|
public BizException(ExceptionEnumInterface errorEnum, String message) {
|
|
|
super(message);
|
|
|
this.code = errorEnum.getCode();
|
|
|
- this.msg = errorEnum.getMessage();
|
|
|
+ this.msg = message;
|
|
|
}
|
|
|
|
|
|
public BizException(ExceptionEnumInterface errorEnum, Throwable cause) {
|