mirror of
https://github.com/dromara/RuoYi-Vue-Plus.git
synced 2025-11-14 21:23:46 +08:00
20 lines
291 B
Java
20 lines
291 B
Java
package com.ruoyi.sms.exception;
|
|
|
|
import java.io.Serial;
|
|
|
|
/**
|
|
* Sms异常类
|
|
*
|
|
* @author Lion Li
|
|
*/
|
|
public class SmsException extends RuntimeException {
|
|
|
|
@Serial
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
public SmsException(String msg) {
|
|
super(msg);
|
|
}
|
|
|
|
}
|