Class InvalidSoftwareStatementException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.forgerock.openig.fapi.error.FapiException
org.forgerock.openig.fapi.trusteddirectory.InvalidSoftwareStatementException
- All Implemented Interfaces:
Serializable
Exception thrown when a Software Statement is invalid, in the
OAuth2.0 spec this corresponds to the
"invalid_software_statement" error code.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionInvalidSoftwareStatementException
(String message) Constructs a new InvalidSoftwareStatementException with the given message.InvalidSoftwareStatementException
(String message, Throwable cause) Constructs a new InvalidSoftwareStatementException with the given message 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
-
InvalidSoftwareStatementException
Constructs a new InvalidSoftwareStatementException with the given message.- Parameters:
message
- error message
-
InvalidSoftwareStatementException
Constructs a new InvalidSoftwareStatementException with the given message and a cause.- Parameters:
message
- error messagecause
- the cause
-