net.yadaframework.security.TooManyFailedAttemptsException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yadawebsecurity Show documentation
Show all versions of yadawebsecurity Show documentation
Yada Framework authentication and authorization component
package net.yadaframework.security;
import org.springframework.security.core.userdetails.UsernameNotFoundException;
public class TooManyFailedAttemptsException extends UsernameNotFoundException {
private static final long serialVersionUID = 1L;
public TooManyFailedAttemptsException() {
super("");
}
public TooManyFailedAttemptsException(String msg) {
super(msg);
}
public TooManyFailedAttemptsException(String msg, Throwable t) {
super(msg, t);
}
}