Hacker News new | ask | show | jobs
by kaba0 1356 days ago
Java's checked exception's could be handled at a single place by a catch, or just marked as `throws`. It was never as verbose as go is.
1 comments

Maybe, but then, when Jackson is throwing an IOException because of bad JSON, and the file you opened that had the JSON could also throw an IOException, then it's not just catch it at a single place, as you'd generally handle both differently.