优化
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
package cloud.tianai.captcha.common.exception;
|
||||
|
||||
/**
|
||||
* @Author: 天爱有情
|
||||
* @date 2022/5/7 9:04
|
||||
* @Description 图片验证码异常
|
||||
*/
|
||||
public class ImageCaptchaException extends RuntimeException{
|
||||
public ImageCaptchaException() {
|
||||
}
|
||||
|
||||
public ImageCaptchaException(String message) {
|
||||
super(message);
|
||||
}
|
||||
|
||||
public ImageCaptchaException(String message, Throwable cause) {
|
||||
super(message, cause);
|
||||
}
|
||||
|
||||
public ImageCaptchaException(Throwable cause) {
|
||||
super(cause);
|
||||
}
|
||||
|
||||
public ImageCaptchaException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
|
||||
super(message, cause, enableSuppression, writableStackTrace);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user