wjli
2023-05-16 d8e76c8e094c2312284b5dc7b4207d049f27262b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package cn.exrick.xboot.core.common.exception;
 
import lombok.Data;
 
/**
 * @author Exrickx
 */
@Data
public class CaptchaException extends RuntimeException {
 
    private String msg;
 
    public CaptchaException(String msg) {
        super(msg);
        this.msg = msg;
    }
}