net.yadaframework.security.exceptions.InternalAuthenticationException 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.exceptions;
import org.springframework.security.core.userdetails.UsernameNotFoundException;
public class InternalAuthenticationException extends UsernameNotFoundException {
private static final long serialVersionUID = 1L;
public InternalAuthenticationException(String msg) {
super(msg);
}
public InternalAuthenticationException(String msg, Throwable t) {
super(msg, t);
}
}