public class

MetaDataAccessException

extends NestedCheckedException
java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ org.springframework.core.NestedCheckedException
         ↳ org.springframework.jdbc.support.MetaDataAccessException

Class Overview

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.

Summary

Public Constructors
MetaDataAccessException(String msg)
Constructor for MetaDataAccessException.
MetaDataAccessException(String msg, Throwable cause)
Constructor for MetaDataAccessException.
[Expand]
Inherited Methods
From class org.springframework.core.NestedCheckedException
From class java.lang.Throwable
From class java.lang.Object

Public Constructors

public MetaDataAccessException (String msg)

Constructor for MetaDataAccessException.

Parameters
msg the detail message

public MetaDataAccessException (String msg, Throwable cause)

Constructor for MetaDataAccessException.

Parameters
msg the detail message
cause the root cause from the data access API in use