Package org.apache.commons.dbcp
Class SQLNestedException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.sql.SQLException
-
- org.apache.commons.dbcp.SQLNestedException
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Iterable<java.lang.Throwable>
public class SQLNestedException extends java.sql.SQLException
Deprecated.Use '(SQLException) new SQLException(msg).initCause(e)' instead; this class will be removed in DBCP 2.0A SQLException subclass containing another Throwable- Version:
- $Revision: 894583 $ $Date: 2009-12-30 05:48:07 -0500 (Wed, 30 Dec 2009) $
- Author:
- Dirk Verbeeck
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SQLNestedException(java.lang.String msg, java.lang.Throwable cause)
Deprecated.Constructs a newSQLNestedException
with specified detail message and nestedThrowable
.
-
Method Summary
-
Methods inherited from class java.sql.SQLException
getErrorCode, getNextException, getSQLState, iterator, setNextException
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
SQLNestedException
public SQLNestedException(java.lang.String msg, java.lang.Throwable cause)
Deprecated.Constructs a newSQLNestedException
with specified detail message and nestedThrowable
.- Parameters:
msg
- the error messagecause
- the exception or error that caused this exception to be thrown
-
-