yujian
2019-09-03 f5f8bc75d8636cd982d76fc31d3b244dec02dc8e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.yeshi.fanli.exception;
 
public class ThreeSaleException extends BaseException {
     
    private static final long serialVersionUID = 1L;
    
    public ThreeSaleException(int code, String msg) {
        super(code, msg);
    }
 
    public ThreeSaleException() {
        super();
    }
}