abstract class NestedCheckedException : Exception
Handy class for wrapping checked Exceptions with a root cause.
This class is abstract to force the programmer to extend the class. getMessage will include nested exception information; printStackTrace and other like methods will delegate to the wrapped exception, if any.
The similarity between this class and the NestedRuntimeException class is unavoidable, as Java forces these two classes to have different superclasses (ah, the inflexibility of concrete inheritance!).
Author
Rod Johnson
Author
Juergen Hoeller
See Also
#getMessage#printStackTraceNestedRuntimeException
NestedCheckedException(msg: String)
Construct a NestedCheckedException(msg: String, cause: Throwable)
Construct a |
open val message: String
Return the detail message, including the message from the nested exception if there is one. |
open fun contains(exType: Class<*>): Boolean
Check whether this exception contains an exception of the given type: either it is of the given class itself or it contains a nested cause of the given type. |
|
open fun getMostSpecificCause(): Throwable
Retrieve the most specific cause of this exception, that is, either the innermost cause (root cause) or this exception itself. Differs from |
|
open fun getRootCause(): Throwable
Retrieve the innermost cause of this exception, if any. |
open class MetaDataAccessException : NestedCheckedException
Exception indicating that something went wrong during JDBC metadata lookup. This is a checked exception since we want it to be caught, logged and handled rather than cause the application to fail. Failure to read JDBC metadata is usually not a fatal problem. |