Error Handling in Subflows

Any error generated in the subflow is propagated to the parent workflow if it is not handled (no error transition) in the subflow.

This is useful if you need to prevent the parent from continuing execution in these cases. However, if you have an error transition, the error is handled and not automatically propagated to the parent workflow. (Java try and catch paradigm).