package com.kidgrow.sms.exception;
|
|
import com.kidgrow.common.exception.KidgrowException;
|
|
/**
|
* 石家庄喜高科技有限责任公司 版权所有 © Copyright 2020<br>
|
*
|
* @Description: <br>
|
* @Project: <br>
|
* @CreateDate: Created in 2020/2/17 08:57 <br>
|
* @Author: <a href="4345453@kidgrow.com">liuke</a>
|
*/
|
public class SmsException extends KidgrowException {
|
/**
|
* Instantiates a new SmsException.
|
*
|
* @param message the message
|
*/
|
public SmsException(final String message) {
|
super(message);
|
}
|
|
/**
|
* Instantiates a new SmsException.
|
*
|
* @param cause the cause
|
*/
|
public SmsException(final Throwable cause) {
|
super(cause);
|
}
|
}
|