Continue Execution Exception Handling Pattern
The following table highlights some important facts about the Continue Execution Exception Handling pattern:
Signature |
Continue Execution Exception Handling Pattern |
Classification |
Exception Pattern |
Intent |
The intention is to handle exceptions raised by the invoked (called) process/service in the invoking (calling) process / service. |
Motivation |
Handle exception in invoking activity using boundary event. |
Applicability |
This pattern showcases those scenarios of exception handling where an exception is not handled by the invoked process/service. That exception will propagate outside the invoked process/service. An assigned activity has invoked a process/service that experiences an error. That exception propagates to the assigned activity and it's then caught by an error catch boundary event. |
Implementation |
If you check the process state diagram and look into the INVOKED state, the sequence "J" points to the scenario where the... |