xuefei
2023-05-08 0d70bf682c2303b4f07216110ff051959884cbb4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package cn.exrick.xboot.core.common.exception;
 
import lombok.Data;
import org.springframework.security.authentication.InternalAuthenticationServiceException;
 
/**
 * @author Exrickx
 */
@Data
public class LoginFailLimitException extends InternalAuthenticationServiceException {
 
    private String msg;
 
    public LoginFailLimitException(String msg) {
        super(msg);
        this.msg = msg;
    }
 
    public LoginFailLimitException(String msg, Throwable t) {
        super(msg, t);
        this.msg = msg;
    }
}