com.hn.sms.exception.SmsException Maven / Gradle / Ivy
package com.hn.sms.exception;
/**
* 描述:
* 短信异常
*
* @author shilvfei
* 2019-01-10 19:13
*/
public class SmsException extends RuntimeException {
public SmsException() {
}
public SmsException(String message) {
super(message);
}
public SmsException(String message, Throwable cause) {
super(message, cause);
}
public static SmsException exception(String message){
return new SmsException(message);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy