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

org.springframework.security.oauth2.common.exceptions.UnauthorizedUserException Maven / Gradle / Ivy

There is a newer version: 2.5.2.RELEASE
Show newest version
package org.springframework.security.oauth2.common.exceptions;

/**
 * Exception thrown when a user was unable to authenticate.
 *
 * 

* @deprecated See the OAuth 2.0 Migration Guide for Spring Security 5. * * @author Dave Syer */ @SuppressWarnings("serial") @Deprecated public class UnauthorizedUserException extends OAuth2Exception { public UnauthorizedUserException(String msg, Throwable t) { super(msg, t); } public UnauthorizedUserException(String msg) { super(msg); } @Override public int getHttpErrorCode() { // The spec says this can be unauthorized return 401; } @Override public String getOAuth2ErrorCode() { // Not in the spec return "unauthorized_user"; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy