...
On a failed response the service throws a HookException from a custom HookException class.
Code Block | ||||
---|---|---|---|---|
| ||||
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); } } |
...