Dose "Continue" "Break" activity work in the "Final" section of a Try Catch activity?

I put a “Continue” in the “Final” section of a Try Catch activity and the Try Catch is in a For Each loop. I found even if the Continue was executed, the following steps were still executed.
As shown in the follow picture, it seems the Continue activity in Final section dose not work correctly —— all steps in the Final section will be executed, just like the Continue is placed in the end of Final section.

Is there some solutions?

1 Like

I faced the same situation , what i did is i put the continue outside the finally block. continue wont work in finally and catch block i guess