Class TreeHookException

java.lang.Object
java.lang.Throwable
java.lang.Exception
org.forgerock.openam.auth.node.api.TreeHookException
All Implemented Interfaces:
Serializable

@Supported public final class TreeHookException extends Exception
An exception to indicate there was a problem executing a tree hook.
See Also:
  • Constructor Details

    • TreeHookException

      @Supported public TreeHookException()
      Default constructor that constructs a blank TreeHookException.
    • TreeHookException

      @Supported public TreeHookException(Throwable e)
      Constructs the TreeHookException taking the information from a given throwable object.
      Parameters:
      e - Throwable we want to wrap into a TreeHookException.
    • TreeHookException

      @Supported public TreeHookException(String message)
      Constructs the TreeHookException with a message.
      Parameters:
      message - The message.
    • TreeHookException

      @Supported public TreeHookException(String message, Throwable cause)
      Constructs the TreeHookException with a message and a wrapped throwable.
      Parameters:
      message - The message
      cause - Throwable we want to wrap into a TreeHookException.