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.
17 lines
253 B
Java
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);
|
|
}
|
|
|
|
}
|