Hacker News new | ask | show | jobs
by MRtecno98 152 days ago
Because java is garbage-collected and doesn't have any of the problems of C++ exceptions, so checked exceptions just become a nuisance of having to try/catch everything.
1 comments

You don't have to try/catch everything.
You do have to catch checked exceptions and that is the issue under debate.
No, you can just declare that the exception in the throws clause.