Exception handling is common place to attempt some functionality and, should exceptions occur, carry out some remedial function. Typically this might be to do things such as logging or rolling back. Understanding the TaskFailedException In in-process Durable Functions, any exceptions which occur when executing an activity function or sub-orchestration are passed back to the parent orchestration wrapped in a FunctionFailedException. However, in isolated Durable Functions this has changed. [Functi...