javatools.db
Class DbException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--javatools.util.CommonException
                    |
                    +--javatools.db.DbException
All Implemented Interfaces:
java.io.Serializable

public class DbException
extends CommonException

An Exception class for this package.

See Also:
Serialized Form

Constructor Summary
DbException(java.lang.Exception exception)
          Builds a new DbException object.
DbException(java.lang.String mesg)
          Builds a new DbException object.
DbException(java.lang.String mesg, java.lang.Exception exception)
          Builds a new DbException object.
 
Methods inherited from class javatools.util.CommonException
getNextException, getStackTrace, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, initCause, setStackTrace
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

DbException

public DbException(java.lang.String mesg)
Builds a new DbException object.

Parameters:
mesg - The message to be passed.

DbException

public DbException(java.lang.String mesg,
                   java.lang.Exception exception)
Builds a new DbException object.

Parameters:
mesg - The message to be displayed.
exception - The source exception to be converted.

DbException

public DbException(java.lang.Exception exception)
Builds a new DbException object.

Parameters:
exception - The source exception to be converted.