mirror of
https://github.com/dromara/RuoYi-Vue-Plus.git
synced 2025-09-24 07:19:46 +08:00
17 lines
255 B
Java
17 lines
255 B
Java
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);
|
|
}
|
|
|
|
}
|