Package org.springframework.jdbc.support
Class MetaDataAccessException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.springframework.core.NestedCheckedException
org.springframework.jdbc.support.MetaDataAccessException
- All Implemented Interfaces:
- Serializable
Exception indicating that something went wrong during JDBC meta-data 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 meta-data is usually not a fatal problem.
- Since:
- 1.0.1
- Author:
- Thomas Risberg
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionConstructor for MetaDataAccessException.MetaDataAccessException(String msg, Throwable cause) Constructor for MetaDataAccessException.
- 
Method SummaryMethods inherited from class org.springframework.core.NestedCheckedExceptioncontains, getMostSpecificCause, getRootCauseMethods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
MetaDataAccessExceptionConstructor for MetaDataAccessException.- Parameters:
- msg- the detail message
 
- 
MetaDataAccessExceptionConstructor for MetaDataAccessException.- Parameters:
- msg- the detail message
- cause- the root cause from the data access API in use
 
 
-