Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

On a failed response the service throws a HookException from a custom HookException class.

Code Block
languagejava
titleHookException
public class HookException extends Exception
{
    private static final long serialVersionUID = 1L;

    public HookException(String message)
    {
        super(message);
    }

    public HookException(String string, Throwable exception)
    {
        super(string,exception);
    }
}

...