Concept Flow - RunCatching for safe execution
Start
RunCatching block
Try to execute code
Success?
Yes→Return Success Result
Catch Exception
Return Failure Result
Use Result safely
End
RunCatching tries to run code safely, catching exceptions and returning a Result object that shows success or failure.