org.springframework.jdbc
Class UncategorizedSQLException
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.UncategorizedDataAccessException
org.springframework.dao.UncategorizedDataAccessException
                               org.springframework.jdbc.UncategorizedSQLException
org.springframework.jdbc.UncategorizedSQLException
- All Implemented Interfaces: 
- Serializable
- public class UncategorizedSQLException 
- extends UncategorizedDataAccessException
Exception thrown when we can't classify a SQLException into 
 one of our generic data access exceptions.
- Author:
- Rod Johnson, Juergen Hoeller
- See Also:
- Serialized Form
 
 
 
 
 
UncategorizedSQLException
public UncategorizedSQLException(String task,
                                 String sql,
                                 SQLException ex)
- Constructor for UncategorizedSQLException.
 
- Parameters:
- task- name of current task
- sql- the offending SQL statement
- ex- the root cause
 
getSQLException
public SQLException getSQLException()
- Return the underlying SQLException.
 
- 
 
getSql
public String getSql()
- Return the SQL that led to the problem.
 
- 
 
Copyright © 2002-2008 The Spring Framework.