com.auth0.spring.security.mvc.Auth0TokenException Maven / Gradle / Ivy
package com.auth0.spring.security.mvc;
import org.springframework.security.core.AuthenticationException;
public class Auth0TokenException extends AuthenticationException {
private static final long serialVersionUID = -4495713385368912388L;
public Auth0TokenException(String msg) {
super(msg);
}
public Auth0TokenException(String msg, Throwable t) {
super(msg, t);
}
public Auth0TokenException(Exception e) {
super(e.getMessage(), e);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy