In my opinion, better is to properly model the err...
# coroutines
s
In my opinion, better is to properly model the errors/exceptions. Catch specific ones, transform them into error objects that the caller can understand and maybe recover from. Let all truly fatal exceptions just crash your app (fast fail is better than ignoring them and have your code/app in a weird and undetermined state).
👍 5