yujian
2020-04-02 06bbeaeb73178a6cff0f207a1a284a73f6445e25
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.yeshi.fanli.exception.config;
 
import com.yeshi.fanli.exception.BaseException;
 
public class SMSException extends BaseException {
     
    private static final long serialVersionUID = 1L;
    
    public SMSException(int code, String msg) {
        super(code, msg);
    }
 
    public SMSException() {
        super();
    }
}