If we want that workflow continues no matter what activity fails

hi, if we want that workflow continues no matter what activity fails, what activities we should use

Hi,
There is a property called “ContinueOnError” for most of the activities its Boolean value.
Set to true.
Specifies to continue executing the remaining activities even if the current activity failed. Only boolean values (True, False) are supported.

Or use TryCatch activity on each. :slight_smile:

Finally block - Activities placed here are executed regardless if an exception occurred or not.

and the try catch activity?