org.springframework.jdbc
Class UncategorizedSQLException
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.UncategorizedDataAccessException
org.springframework.jdbc.UncategorizedSQLException
- All Implemented Interfaces:
- java.io.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
Field Summary |
private java.lang.String |
sql
SQL that led to the problem |
Constructor Summary |
UncategorizedSQLException(java.lang.String task,
java.lang.String sql,
java.sql.SQLException ex)
Constructor for UncategorizedSQLException. |
Method Summary |
java.lang.String |
getSql()
Return the SQL that led to the problem. |
java.sql.SQLException |
getSQLException()
Return the underlying SQLException. |
Methods inherited from class java.lang.Throwable |
fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
sql
private final java.lang.String sql
- SQL that led to the problem
UncategorizedSQLException
public UncategorizedSQLException(java.lang.String task,
java.lang.String sql,
java.sql.SQLException ex)
- Constructor for UncategorizedSQLException.
- Parameters:
task
- name of current tasksql
- the offending SQL statementex
- the root cause
getSQLException
public java.sql.SQLException getSQLException()
- Return the underlying SQLException.
getSql
public java.lang.String getSql()
- Return the SQL that led to the problem.