zhangzeli
2021-10-29 0dd290a1d4d1872ff08bfa5877f59c5581914f90
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;
    }
}