!34 修复日志异常打印msg为空

Merge pull request !34 from Yohanes/dev
This commit is contained in:
傲世孤尘
2023-07-26 05:46:11 +00:00
committed by Gitee
@@ -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;
}