Invoked State Exception Handling Pattern
The following table highlights some important facts about the Invoked State Exception Handling pattern:
Signature |
Invoked State Exception Handling Pattern |
Classification |
Exception Pattern |
Intent |
The intention is to handle exceptions in the invoked (called) process itself. |
Motivation |
Implement an Exception Handling Pattern that results in exception handling in the invoked process itself. The invoked process that has experienced the error will not propagate the exception to the called process. |
Applicability |
This pattern considers the fact that an assigned activity has invoked a process/service and the process/service has the capability to handle the exception itself. This means that when an exception rises in the invoked process/service, it gets handled there and the invoking process (assigned activity) will never know about it. |
Implementation |
To implement the scenario, we will consider an asynchronous process. This asynchronous... |