suncertify.db
Class DataBaseException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--suncertify.db.DataBaseException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
ClientNotLoggedInException, DuplicateKeyException, IncorrectDataFile, RecordNotFoundException

public abstract class DataBaseException
extends java.lang.Exception

Exception class for signalization problems with database access

See Also:
Serialized Form

Constructor Summary
DataBaseException()
          Empty contructor
DataBaseException(java.lang.String message)
          One prameter contructor, with the message as param
DataBaseException(java.lang.String message, java.lang.Throwable cause)
          Contructor for chaining exception throwing
DataBaseException(java.lang.Throwable cause)
          Contructor for chaining exception throwing
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

DataBaseException

public DataBaseException()
Empty contructor


DataBaseException

public DataBaseException(java.lang.String message)
One prameter contructor, with the message as param

Parameters:
message - exception message

DataBaseException

public DataBaseException(java.lang.String message,
                         java.lang.Throwable cause)
Contructor for chaining exception throwing

Parameters:
message - exception message
cause - exception cause

DataBaseException

public DataBaseException(java.lang.Throwable cause)
Contructor for chaining exception throwing

Parameters:
cause - exceptinon cause