How to skip exception without using Try catch activity

How to skip exception without using Try catch activity

1 Like

Hi @ShreyaSharma.You can set the ContinueOnError property to True :slight_smile:

3 Likes

Do I have to set it true for all actvities,?

1 Like

It depends on you :slight_smile:
But you can do it for all activities.
However, this is not recommended.

3 Likes

Hello @ShreyaSharma

Just like my friend @Jan_Brian_Despi mentioned, it is not a good practice to skip exceptions. In the long run, this could make your program unstable.

I would always recommend using try catch for critical parts of the program and configure it accordingly. Use continue on error as True only and only in where it is really required. If not, handle it with a try catch

5 Likes