How to continue a while loop if an exception occurs during the execution of loop

How to continue a while loop if an exception occurs during the execution of loop

@maria.josephina Enclose statements which generates exception inside Try block. If any exception happens flow will not be stopped.

Add a try-catch activity and move the entire while loop inside the try block.Then add an
all encompassing system exception and just for illustration purpose, you can throw in a WriteLine activity.

1 Like

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