org.apache.commons.dbcp
Class DbcpException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byjava.lang.RuntimeException
              extended byorg.apache.commons.dbcp.DbcpException
All Implemented Interfaces:
Serializable

Deprecated. This will be removed in a future version of DBCP.

public class DbcpException
extends RuntimeException

Subclass of RuntimeException that can be used to wrap a SQLException using the "root cause" pattern of JDK 1.4 exceptions, but without requiring a 1.4 runtime environment.

Version:
$Revision: 892307 $ $Date: 2013-12-31 23:27:28 +0000 (Tue, 31 Dec 2013) $
Author:
Jonathan Fuerth, Dan Fraser
See Also:
Serialized Form

Field Summary
protected  Throwable cause
          Deprecated. The root cause of this exception (typically an SQLException but this is not required).
 
Constructor Summary
DbcpException()
          Deprecated. Construct a new runtime exception with null as its detail message.
DbcpException(String message)
          Deprecated. Construct a new runtime exception with the specified detail message.
DbcpException(String message, Throwable cause)
          Deprecated. Construct a new runtime exception with the specified detail message and cause.
DbcpException(Throwable cause)
          Deprecated. Construct a new runtime exception with the specified cause and a detail message of (cause == null ? null : cause.toString()).
 
Method Summary
 Throwable getCause()
          Deprecated. Return the root cause of this exception (if any).
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

cause

protected Throwable cause
Deprecated. 
The root cause of this exception (typically an SQLException but this is not required).

Constructor Detail

DbcpException

public DbcpException()
Deprecated. 
Construct a new runtime exception with null as its detail message.


DbcpException

public DbcpException(String message)
Deprecated. 
Construct a new runtime exception with the specified detail message.

Parameters:
message - The detail message for this exception

DbcpException

public DbcpException(String message,
                     Throwable cause)
Deprecated. 
Construct a new runtime exception with the specified detail message and cause.

Parameters:
message - The detail message for this exception
cause - The root cause for this exception

DbcpException

public DbcpException(Throwable cause)
Deprecated. 
Construct a new runtime exception with the specified cause and a detail message of (cause == null ? null : cause.toString()).

Parameters:
cause - The root cause for this exception
Method Detail

getCause

public Throwable getCause()
Deprecated. 
Return the root cause of this exception (if any).



Copyright © The Apache Software Foundation. All Rights Reserved.