admin
2022-06-17 2d88839407045d9f483cf2ab4aed149a59e22df4
1
2
3
4
5
6
7
8
9
10
11
package com.yeshi.makemoney.app.exception.msg;
 
import com.ks.lib.common.exception.BaseException;
 
public class UserMsgException extends BaseException {
 
    public UserMsgException(int code, String msg) {
        super(code, msg);
    }
 
}