forked from kidgrow-microservices-platform

zhaoxiaohao
2020-12-28 4d16eccb156ad17b395332edafd41cae208d7a28
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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);
    }
}