Package org.springframework.dao
Class TypeMismatchDataAccessException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.core.NestedRuntimeException
org.springframework.dao.DataAccessException
org.springframework.dao.NonTransientDataAccessException
org.springframework.dao.InvalidDataAccessResourceUsageException
org.springframework.dao.TypeMismatchDataAccessException
- All Implemented Interfaces:
Serializable
Exception thrown on mismatch between Java type and database type:
for example on an attempt to set an object of the wrong type
in an RDBMS column.
- Author:
- Rod Johnson
- See Also:
-
Constructor Summary
ConstructorDescriptionConstructor for TypeMismatchDataAccessException.TypeMismatchDataAccessException
(String msg, Throwable cause) Constructor for TypeMismatchDataAccessException. -
Method Summary
Methods inherited from class org.springframework.core.NestedRuntimeException
contains, getMostSpecificCause, getRootCause
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
TypeMismatchDataAccessException
Constructor for TypeMismatchDataAccessException.- Parameters:
msg
- the detail message
-
TypeMismatchDataAccessException
Constructor for TypeMismatchDataAccessException.- Parameters:
msg
- the detail messagecause
- the root cause from the data access API in use
-