Hey
I have one workflow where whenever an exception occurs I want to retry the entire workflow and also I want include try catch as well.
I wanted to know whether I can add retry inside try or outside of the try block?
Please help
you can use Retry scope outside and inside of retry use Try catch block
You can add retry scope inside try catch so it will retry the entire workflow and if retried reached then it will catch the exception catch block then you can perform as per your requirements.
Thanks
Akash Javalekar
before retrying if some steps needs to be performed then use try catch inside and in catch perform the steps…if not no need to use it outside anyways if you want to just rethrow
cheers
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.