![JAR search and dependency download from the Maven repository](/logo.png)
ee.bitweb.springframework.security.estonianid.SmartIdAuthenticationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-security-estonian-id Show documentation
Show all versions of spring-security-estonian-id Show documentation
Spring Security support for Estonian ID card and Mobile ID authentication.
The newest version!
package ee.bitweb.springframework.security.estonianid;
import ee.bitweb.springframework.security.estonianid.authentication.SmartIdAuthenticationToken;
import org.springframework.security.core.AuthenticationException;
/**
* Created by taavisikk on 2/26/19.
*/
public class SmartIdAuthenticationException extends AuthenticationException {
private SmartIdAuthenticationToken token;
public SmartIdAuthenticationException(String msg, SmartIdAuthenticationToken token, Throwable t) {
super(msg, t);
this.token = token;
}
public SmartIdAuthenticationException(String msg, SmartIdAuthenticationToken token) {
this(msg, token, null);
}
public SmartIdAuthenticationToken getToken() {
return token;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy