wjli
2023-05-16 5c12c5a4490898f20259e9de83767c4dadff10ba
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;
    }
}