commonj.connector.runtime
Class BindingException

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

public class BindingException
extends Exception

The BindingException represents an error that occured when working with a configured resource.

Since:
1.1
See Also:
Serialized Form

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

BindingException

public BindingException()
Default constructor

See Also:
Exception.Exception()

BindingException

public BindingException(String message)
Constructor with message

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

BindingException

public BindingException(Throwable cause)
The constructor with cause exception

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

BindingException

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