1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| package com.yeshi.makemoney.app.exception.user;
|
| import com.ks.lib.common.exception.BaseException;
|
| /**
| * @author hxh
| * @title: UserInfoException
| * @description: 用户信息异常
| * @date 2022/4/6 18:10
| */
| public class UserInfoException extends BaseException {
|
| public UserInfoException(int code, String msg) {
| super(code, msg);
| }
|
| }
|
|