Are error end event inputs accessible from an error event subprocess

Hi,

Here is a simplified version of what I’d like to achieve:

An error is thrown as part of the main flow, and is caught in an event subprocess. The error end event has the code set as well as some inputs (reason and status). I would like to read these values when catching the event in the sub-process and I’d like to use their values while handling the error. Is there any way this can be done?

Thanks.

Hi,

As far as I know, it is not possible to access the inputs of “Throw an error” in your event subprocess.
However, the subprocess has access to all variables of its parent process. So, you could simply move the input mapping for status and reason to activity “handle error”.
I hope this helps.