admin
2022-06-17 2d88839407045d9f483cf2ab4aed149a59e22df4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.yeshi.makemoney.app.exception.team;
 
import com.ks.lib.common.exception.BaseException;
 
public class TeamInviteRelationException extends BaseException {
 
    //已经被邀请
    public final static int CODE_ALREADY_INVITED = 101;
 
    public TeamInviteRelationException(int code, String msg) {
        super(code, msg);
    }
 
}