Initial commit

This commit is contained in:
2025-08-06 09:30:23 +08:00
commit e0e6babe83
994 changed files with 116653 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);
}
}