com.github.xiaoyuge5201.exception.SmsException Maven / Gradle / Ivy
The newest version!
package com.github.xiaoyuge5201.exception;
import java.io.Serializable;
/**
* 短信异常信息
*
* @author yugb
*/
public class SmsException extends RuntimeException implements Serializable {
public SmsException() {
super();
}
public SmsException(String message, Throwable cause, boolean enableSuppression,
boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
public SmsException(String message, Throwable cause) {
super(message, cause);
}
public SmsException(String message) {
super(message);
}
public SmsException(Throwable cause) {
super(cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy