Try Catch with If Condition

Hi everyone!

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.

Any suggestion?

HI @cldt ,
can you share the screenshot, it will work next record if you have used try catch.

Regards,
Arivu

Hi,

Hope the following helps you.

or

img20210916-3

Regards,

1 Like

Hi @Yoichi ,

No need to give continue activity, it will work fine. What error are you getting?

Regards,
Arivu

You have already got the answer

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

Cheers @cldt

1 Like

Thanks everyone for your inputs!

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.