Class TreeHookException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.forgerock.openam.auth.node.api.TreeHookException
- All Implemented Interfaces:
Serializable
An exception to indicate there was a problem executing a tree hook.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor that constructs a blank TreeHookException.TreeHookException
(String message) Constructs the TreeHookException with a message.TreeHookException
(String message, Throwable cause) Constructs the TreeHookException with a message and a wrapped throwable.Constructs the TreeHookException taking the information from a given throwable object. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
TreeHookException
Default constructor that constructs a blank TreeHookException. -
TreeHookException
Constructs the TreeHookException taking the information from a given throwable object.- Parameters:
e
- Throwable we want to wrap into a TreeHookException.
-
TreeHookException
Constructs the TreeHookException with a message.- Parameters:
message
- The message.
-
TreeHookException
Constructs the TreeHookException with a message and a wrapped throwable.- Parameters:
message
- The messagecause
- Throwable we want to wrap into a TreeHookException.
-