【7.0.2】【rule】更新serviceException的赋值错误

pull/6/head
fengshuonan 2021-04-02 12:13:28 +08:00
parent 5238946658
commit 0fc05732fc
1 changed files with 2 additions and 2 deletions

View File

@ -70,8 +70,8 @@ public class ServiceException extends RuntimeException {
*/
public ServiceException(String moduleName, String errorCode, String userTip) {
super(userTip);
this.errorCode = moduleName;
this.moduleName = errorCode;
this.errorCode = errorCode;
this.moduleName = moduleName;
this.userTip = userTip;
}