wang-hao-jie
2021-12-27 022716b7d47c577d8d3bc30234937c41330f4bbf
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;
    }
}