Package org.forgerock.oauth
Class OAuthConfigException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.forgerock.oauth.OAuthException
org.forgerock.oauth.OAuthConfigException
- All Implemented Interfaces:
Serializable
Exception used when an error has occurred with an OAuth client's configuration.
- See Also:
-
Constructor Summary
ConstructorDescriptionOAuthConfigException
(String message) Builds a OAuthConfigException with a given message.OAuthConfigException
(String message, Exception cause) Builds a OAuthConfigException with a given message and cause. -
Method Summary
Methods inherited from class org.forgerock.oauth.OAuthException
asPromise
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
OAuthConfigException
Builds a OAuthConfigException with a given message.- Parameters:
message
- exception message
-
OAuthConfigException
Builds a OAuthConfigException with a given message and cause.- Parameters:
message
- Exception's messagecause
- Exception to wrap
-