疯狂的狮子li
2022-06-29 b73324e80025787dda0ab1d0e6a13de9ebe68e17
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.ruoyi.sms.exception;
 
/**
 * Sms异常类
 *
 * @author Lion Li
 */
public class SmsException extends RuntimeException {
 
    private static final long serialVersionUID = 1L;
 
    public SmsException(String msg) {
        super(msg);
    }
 
}