Concept Flow - Retry for reattempting
Start
Try block
Error?
No→Success, End
Yes
Retry count < max?
No→Raise error, End
Yes
Retry block
Back to Try block
The code tries to run a block. If an error happens, it checks if retries remain. If yes, it retries; if no, it stops with error.