Files
cp-ems-reference/cp-ems-sms/src/main/java/com/cpems/sms/exception/SmsException.java
Du Wenbo 8cdd8083f8 cp-ems v4.6.0 reference source code (Java/Spring Boot/RuoYi)
Enterprise EMS reference system for study purposes.
- Backend: Spring Boot + MyBatis Plus + Sa-Token
- Frontend: Vue 2 + Element UI + ECharts
- Database: MySQL + TDengine + Redis
- Features: energy monitoring, alarm management, quota, charging, maintenance
- Source: https://cp-ems.cn

This is a read-only reference. Do not develop on this repo.
2026-04-04 16:30:34 +08:00

17 lines
253 B
Java

package com.cpems.sms.exception;
/**
* Sms异常类
*
* @author cpems
*/
public class SmsException extends RuntimeException {
private static final long serialVersionUID = 1L;
public SmsException(String msg) {
super(msg);
}
}