Class WebhookFilterException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
de.hybris.platform.webhookservices.filter.WebhookFilterException
- All Implemented Interfaces:
Serializable
Indicates a problem with execution of the script used in a
WebhookConfiguration.
This means that the attribute configuration is valid, i.e. the script is found and loaded, but the script crashed during
execution.- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionWebhookFilterException(String logicLocation, String eventType, RuntimeException e) Instantiates the exception with the information about the script that failed to execute. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
WebhookFilterException
Instantiates the exception with the information about the script that failed to execute.- Parameters:
logicLocation- String indicating where the script being executed is locatedeventType- Type of event that triggered the webhook where the script failede- Exception with the cause of the failure
-