What is the general rule of thumb when deciding whether to add a throws
clause to a method or using a try-catch
?
From what I\'ve read mysel
Here's the way I use it:
Throws:
Try-Catch:
I know a lot of people who always use Throws because it's cleaner, but there's just not nearly as much control.