commonj.connector.runtime
Class DataHandlerException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by commonj.connector.runtime.DataHandlerException
All Implemented Interfaces:
Serializable

public class DataHandlerException
extends Exception

An exception used to indicate data handling errors during runtime. If the error is due to another exception, the cause exception should be embedded in this exception.

Since:
1.1
See Also:
Serialized Form

Constructor Summary
DataHandlerException()
          Default constructor
DataHandlerException(String message)
          Constructor with message
DataHandlerException(String message, Throwable cause)
          Constructor with message and cause exception
DataHandlerException(Throwable cause)
          The constructor with cause exception
 
Method Summary
 
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
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

DataHandlerException

public DataHandlerException()
Default constructor

See Also:
Exception.Exception()

DataHandlerException

public DataHandlerException(String message)
Constructor with message

Parameters:
message - The exception message
See Also:
Exception.Exception(java.lang.String)

DataHandlerException

public DataHandlerException(String message,
                            Throwable cause)
Constructor with message and cause exception

Parameters:
message - The exception message
cause - The cause exception
See Also:
Exception.Exception(java.lang.String, java.lang.Throwable)

DataHandlerException

public DataHandlerException(Throwable cause)
The constructor with cause exception

Parameters:
cause - The cause exception
See Also:
Exception.Exception(java.lang.Throwable)