com.erigir.wrench.shiro.OauthAuthenticationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wrench-shiro-oauth Show documentation
Show all versions of wrench-shiro-oauth Show documentation
An extensible implementation of Apache Shiro that uses OAuth as its source with a provided
Spring MVC configuration
package com.erigir.wrench.shiro;
import org.apache.shiro.authc.AuthenticationException;
public class OauthAuthenticationException extends AuthenticationException {
public OauthAuthenticationException() {
super();
}
public OauthAuthenticationException(String message) {
super(message);
}
public OauthAuthenticationException(Throwable cause) {
super(cause);
}
public OauthAuthenticationException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy