Hacker News new | ask | show | jobs
by grashalm01 2822 days ago
My rule of thumb: use checked exceptions if and only if your exceptions are not supposed to be rethrown and must be handled by the caller directly. These cases are very rare, but I recently had one them.
1 comments

I think that's a reasonable rule of thumb, and it tends to be the way I use checked exceptions as well.