Class RegistrationRequestException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.forgerock.openig.fapi.error.FapiException
org.forgerock.openig.fapi.dcr.request.RegistrationRequestException
- All Implemented Interfaces:
Serializable
Exception thrown when building a
RegistrationRequest
using a RegistrationRequestFilter
.- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionRegistrationRequestException
(String oAuth2ErrorCode, String errorDescription) Constructs a newRegistrationRequestBuilderException
with the given oauth2 error code and description.RegistrationRequestException
(ErrorCode errorCode, String errorDescription) Constructs a newRegistrationRequestBuilderException
with the givenErrorCode
and description.RegistrationRequestException
(ErrorCode errorCode, String errorDescription, Throwable cause) Constructs a newRegistrationRequestBuilderException
with the givenErrorCode
, description and a cause. -
Method Summary
Methods inherited from class org.forgerock.openig.fapi.error.FapiException
getErrorCode, getErrorDescription
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
RegistrationRequestException
Constructs a newRegistrationRequestBuilderException
with the given oauth2 error code and description.- Parameters:
oAuth2ErrorCode
- error codeerrorDescription
- error description
-
RegistrationRequestException
Constructs a newRegistrationRequestBuilderException
with the givenErrorCode
and description.- Parameters:
errorCode
- error codeerrorDescription
- error description
-
RegistrationRequestException
Constructs a newRegistrationRequestBuilderException
with the givenErrorCode
, description and a cause.- Parameters:
errorCode
- error codeerrorDescription
- error descriptioncause
- the cause
-