Concept Flow - Try-Catch-Finally
Start Try Block
Run Code in Try
Error Occurs?
No→Skip Catch
|Yes
Run Catch Block
Run Finally Block
End
The script tries to run code in the Try block. If an error happens, it runs the Catch block. Finally, it always runs the Finally block.