yj
2020-03-13 d41d36fe93c10e62faa6b98d2f4b89ad193a3e94
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();
    }
}