All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.auth0.spring.security.auth0.Auth0TokenException Maven / Gradle / Ivy

The newest version!
package com.auth0.spring.security.auth0;

import org.springframework.security.core.AuthenticationException;

/**
 * Implementation of UserDetails in compliance with the decoded object returned by the Auth0 JWT
 */
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 - 2024 Weber Informatics LLC | Privacy Policy