public class

TypeMismatchDataAccessException

extends InvalidDataAccessResourceUsageException
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

Class Overview

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.

Summary

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

Public Constructors

public TypeMismatchDataAccessException (String msg)

Constructor for TypeMismatchDataAccessException.

Parameters
msg the detail message

public TypeMismatchDataAccessException (String msg, Throwable cause)

Constructor for TypeMismatchDataAccessException.

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