Anyone know here how to use if condition when doing try catch? For example, if I have an error, I’ll do a certain activity and without error, another activity. Try catch is inside a for each loop, I tried to use the “Continue” activity after try catch so that it can proceed to the next item after catching the error but it’s not working.
If it doesn’t throw any error it will be in try block only
So you can include all the activities in TRY block you want to perform when no error
And if there is any error it willl go to Catch block where we can include the relevant activity
And obvious even if any error occur it willl continue with the next set of activities and that’s the purpose of try catch and I hope we don’t need continue activity here