I\'ve been told that there is some overhead in using the Java try-catch mechanism. So, while it is necessary to put methods that throw checked exception within a try block t
No. The only thing that you should be considering is where you can reasonably handle the exception and what resources you need to reclaim (with finally).