I have a sequence of processes and I want to put a try-catch block in the loop that should catch the error in this statemenet and if the error exists, it should send a mail and then continue to next iteration, otherwise if there’s no error, it should go as it is naturally:
In the above image I want to put try catch block, but the two problems I am facing is:
- Not able to add continue block or code snippet.
- In the try catch activity zone, I am able to add only one activity, but in catch I want to perform two of them: 1. to send the mail with error alert and 2. to continue the loop with next iteration.