org.springframework.dao
Class TypeMismatchDataAccessException
java.lang.Object
   java.lang.Throwable
java.lang.Throwable
       java.lang.Exception
java.lang.Exception
           java.lang.RuntimeException
java.lang.RuntimeException
               org.springframework.core.NestedRuntimeException
org.springframework.core.NestedRuntimeException
                   org.springframework.dao.DataAccessException
org.springframework.dao.DataAccessException
                       org.springframework.dao.NonTransientDataAccessException
org.springframework.dao.NonTransientDataAccessException
                           org.springframework.dao.InvalidDataAccessResourceUsageException
org.springframework.dao.InvalidDataAccessResourceUsageException
                               org.springframework.dao.TypeMismatchDataAccessException
org.springframework.dao.TypeMismatchDataAccessException
- All Implemented Interfaces: 
- Serializable
- public class TypeMismatchDataAccessException 
- extends InvalidDataAccessResourceUsageException
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:
- Serialized Form
 
 
 
 
 
TypeMismatchDataAccessException
public TypeMismatchDataAccessException(String msg)
- Constructor for TypeMismatchDataAccessException.
 
- Parameters:
- msg- the detail message
 
TypeMismatchDataAccessException
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
 
Copyright © 2002-2008 The Spring Framework.