Exception handling best practices
by , 01-08-2012 at 11:58 AM (1410 Views)
Following are the best practices when catching and handling exceptions in your java code.
• Do not catch “Exception” directly in your code. Java exception handling is not polymorphic. If you catch Exception, it can catch IOException or any other descendent type.
Catching Exceptions
• Exception handling supports the stack trace of any error in your code. Always throw an exception early in your code to make this trace more accurate.
• Always catch a checked exception late in your code.










Email Blog Entry
Size Reduced for Images in PDF &...
05-15-2013, 05:53 PM in Java Software