Interface ExternalOAuthFailedError

All Superinterfaces:
ErrorObject
All Known Implementing Classes:
ExternalOAuthFailedErrorImpl

public interface ExternalOAuthFailedError extends ErrorObject

Returned when an external OAuth Introspection endpoint does not return a response within the time limit, or the response isn't compliant with RFC 7662 (for example, an HTTP status code like 500).


Example to create an instance using the builder pattern

     ExternalOAuthFailedError externalOAuthFailedError = ExternalOAuthFailedError.builder()
             .message("{message}")
             .build()