All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hn.sms.exception.SmsException Maven / Gradle / Ivy

There is a newer version: 1.0.18
Show newest version
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