Error
Use this Node to raise a user-defined error in your Workflow.
This is useful when you want to stop processing after a validation check fails, or when you want to return a clearer error than the one raised by a downstream system.
Revision History
0.0.0.8 - Current release.
Setup Notes
You can add this Node to a Workflow without authentication or external setup.
Methods
The Error Node exposes one method.
Raise
Raises an error with the message you supply.
| Parameter | Type | Description |
|---|---|---|
Message |
String | The text that will be raised as the error message. |
This method does not Return a value. It stops execution by raising an error.
Usage Notes
- Use this Node to fail a Workflow intentionally when a required condition is not met.
- If you do not want to expose a low-level error from another Node, catch that error earlier in the Workflow and raise a clearer message here.
- Keep the message specific enough to help with troubleshooting, especially if the Workflow is monitored by other people.