Class OAuth2ErrorResponseErrorHandler

java.lang.Object
org.springframework.security.oauth2.client.http.OAuth2ErrorResponseErrorHandler
All Implemented Interfaces:
org.springframework.web.client.ResponseErrorHandler

public class OAuth2ErrorResponseErrorHandler extends Object implements org.springframework.web.client.ResponseErrorHandler
A ResponseErrorHandler that handles an OAuth 2.0 Error.
Since:
5.1
See Also:
  • Constructor Details

    • OAuth2ErrorResponseErrorHandler

      public OAuth2ErrorResponseErrorHandler()
  • Method Details

    • hasError

      public boolean hasError(org.springframework.http.client.ClientHttpResponse response) throws IOException
      Specified by:
      hasError in interface org.springframework.web.client.ResponseErrorHandler
      Throws:
      IOException
    • handleError

      public void handleError(org.springframework.http.client.ClientHttpResponse response) throws IOException
      Specified by:
      handleError in interface org.springframework.web.client.ResponseErrorHandler
      Throws:
      IOException
    • setErrorConverter

      public final void setErrorConverter(org.springframework.http.converter.HttpMessageConverter<OAuth2Error> oauth2ErrorConverter)
      Sets the HttpMessageConverter for an OAuth 2.0 Error.
      Parameters:
      oauth2ErrorConverter - A HttpMessageConverter for an OAuth 2.0 Error.
      Since:
      5.7