admin
2020-03-01 c5f54810f60e036317562b1b42cfeafd18e984c5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.yeshi.fanli.exception.user;
 
import com.yeshi.fanli.exception.BaseException;
 
public class UserSystemCouponException extends BaseException {
     
    private static final long serialVersionUID = 1L;
    
    public UserSystemCouponException(int code, String msg) {
        super(code, msg);
    }
 
    public UserSystemCouponException() {
        super();
    }
}