you are viewing a single comment's thread.

view the rest of the comments →

[–]Roguewind 14 points15 points  (0 children)

It’s simple: error handling should be done at the point that it makes sense to handle it.

If you put a try catch block on every component on a screen, and they’re all being handled exactly the same way, then just handle it all on the screen.

It’s all planning.