Throw
ļ»æ does not offer theĀ ThrowĀ error handling directiveļ»æ. This feature implementation is being analyzed and evaluated.
This article describes alternatives and workarounds to mimic theĀ ThrowĀ error handling directive.
To conditionally throw an error you may configure a module to make it optionally purposely fail during its operation. One possibility is to employĀ JSON > Parse JSONļ»æĀ module configured to optionally throw an error (BundleValidationError in this case):

You can then attach one of theĀ error handling directivesļ»æĀ to the error handling route to:
- force the execution to stop and perform the rollback phase:Ā Rollback
- force the execution to stop and perform the commit phase:Ā Commit
- stop the processing of a route:Ā Ignore
The following example shows the use of the Rollback directive:

Workaround - Using HTTP Module
UsecaseĀ - Retry after some time if there is no record found using Break Directive. Usually, this is crucial when your record doesn't update instantly and you would like to process it later on in automation. Using this Break directive could be handy with the lesser complexity of the setup.
Current BarrierĀ - does not offer a module that would enable you to easily conditionally generate (throw) errors.
To give you a better understanding here is the current setup without modification:Ā This search in Zendesk if there is no use it wonāt throw an error forcefully to search it again you would need to implement a complex procedure by saving the record.

SolutionĀ - To conditionally throw an error you may replace the module where you want to throw an error, with an HTTP module then perform the search in a second linking the HTTP module using webhook with a second . If no result found you can customize the module to throw an error
ļ»æ One -Ā
- Replace the Module where you want to throw an error with HTTP > Make a Request module
- Configure the URL within the query parameter that you will get from the Custom Webhook module and add an optional query parameter to search for the email
Enable the advanced settings and check the evaluate all the states as errors.
Add a Break handler in that HTTP module and configure the setup to run later.
ļ»æ 2 -
- SetupĀ Webhooks > Custom WebhooksĀ as a trigger and copy the URL use it in the HTTP module as shown in the previous steps.
- Here use the Zendesk > Search for a User module use the parameter from the HTTP module to perform a query. EnableĀ Continue the execution of the route even if the module returns no results
- Add a Router and create two routes
- Consecutively setup the webhook response module
The following example returning the result - You will notice when the Zendesk module executes the API it doesnāt send any error message but in the action, weāre replicating the error using the HTTP module.

ļ»æ