gov.grants.apply.dao
Class DAOException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended bygov.grants.apply.util.NestedException
              extended bygov.grants.apply.dao.DAOException
All Implemented Interfaces:
java.io.Serializable

public final class DAOException
extends gov.grants.apply.util.NestedException

Author:
Grants.gov WebServices Team A Nested exception type object representing exceptional situations occurring within DAO classes. This class extends NestedException, which is a work around when using JDK version 1.3.
See Also:
Serialized Form

Field Summary
 
Fields inherited from class java.lang.Exception
 
Constructor Summary
DAOException(java.lang.String message)
          Create a DAOException with a customized error message.
DAOException(java.lang.String message, java.lang.Throwable cause)
          Create a DAOException with a customized error message and the original throwable object.
DAOException(java.lang.Throwable cause)
          Create a DAOException with the original throwable object.
 
Methods inherited from class gov.grants.apply.util.NestedException
getMessage, printStackTrace, printStackTrace, printStrackTrace, setCause, setMessage, toString
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, initCause, printStackTrace, setStackTrace
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

DAOException

public DAOException(java.lang.String message)
Create a DAOException with a customized error message.

Parameters:
message - A customized error message

DAOException

public DAOException(java.lang.String message,
                    java.lang.Throwable cause)
Create a DAOException with a customized error message and the original throwable object.

Parameters:
message - A customized error message
cause - The original throwable object.

DAOException

public DAOException(java.lang.Throwable cause)
Create a DAOException with the original throwable object.

Parameters:
cause - The original throwable object.