|
| Total Answers and Comments: 7 |
Last Update: July 14, 2008 Asked by: naggeek |
|
| | |
|
Submitted by: trcdutt It is a compile time exception (Checked Exception). Anything that inherits Exception class is a compile time exception and any class that inherit from RuntimeException and Error classes are unchecked Exceptions (Runtime Exceptions). SQLException is a direct subclass of Exception which means it is a checked exception. Refer to the link from Java Language spec:
http://java.sun.com/docs/books/jls/second_edition/html/exceptions.doc.html
Above answer was rated as good by the following members: interviewprep9, er.mukesh_208 | Go To Top
|