Process Exit
Terminates the current process with a specified exit code.
Terminates the current process immediately with a given exit code. Once this node is executed, the entire program stops, and no subsequent nodes will be processed.
Exit Codes#
An exit code is a number returned by a process when it finishes. It signals whether the process completed successfully or encountered an error.
| Code | Meaning |
|---|---|
0 |
Success |
>0 |
Failure/Error |
Conventionally, an exit code of 0 indicates success, while any non-zero value indicates an error.
Inputs#
| Port | Description |
|---|---|
The exit code to use. Typically 0 for success and non-zero for an error. |
ID: core/process-exit@v1