add 增加 ruoyi-sms 短信模块 整合 阿里云、腾讯云 短信功能

This commit is contained in:
疯狂的狮子li
2022-05-06 18:07:00 +08:00
parent 781ae8d5c8
commit e57d11d55a
11 changed files with 395 additions and 0 deletions

View File

@ -0,0 +1,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);
}
}