commonj.connector.runtime
Class DataBindingException

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

public class DataBindingException
extends Exception

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

Since:
1.0
See Also:
Serialized Form

Constructor Summary
DataBindingException()
          Default constructor
DataBindingException(String message)
          Constructor with message
DataBindingException(String message, Throwable cause)
          Constructor with message and cause exception
DataBindingException(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

DataBindingException

public DataBindingException()
Default constructor

See Also:
Exception.Exception()

DataBindingException

public DataBindingException(String message)
Constructor with message

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

DataBindingException

public DataBindingException(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)

DataBindingException

public DataBindingException(Throwable cause)
The constructor with cause exception

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