1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| package com.monkeylessey.exception;
|
| /**
| * 验证码错误异常
| *
| * @author xp
| * @data 2023/4/6
| */
| public class CaptchaErrorException extends BaseException {
|
| public CaptchaErrorException(String msg, Throwable cause) {
| super(msg, cause);
| }
|
| public CaptchaErrorException(String msg) {
| super(msg, 1998);
| }
|
| public CaptchaErrorException(String msg, Integer code) {
| super(msg, code);
| }
| }
|
|