Even though exception handling is common and every introductory Java course covers it, I still don't think we really know how to do it well. It is almost as if the general concept is still evolving ...
Exceptions are errors that occur at runtime; exception handling is the technique of handling these runtime errors. You would typically use try, catch, and finally blocks (also known as exception ...