org.objectweb.jonathan.binding.api
Class BindException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by org.objectweb.jonathan.apis.kernel.JonathanException
              extended by org.objectweb.jonathan.binding.api.BindException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
ForwardException

public class BindException
extends org.objectweb.jonathan.apis.kernel.JonathanException

BindException is a checked exception that indicates that an error occurred when trying to bind an interface.

See Also:
Serialized Form

Constructor Summary
BindException()
          Constructs a new BindException with no detail message.
BindException(Exception exception)
          Builds a BindException that wraps another exception.
BindException(String s)
          Builds a BindException with a detail message.
 
Method Summary
 
Methods inherited from class org.objectweb.jonathan.apis.kernel.JonathanException
getMessage, printStackTrace, printStackTrace, printStackTrace, represents, toString
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, initCause, setStackTrace
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

BindException

public BindException()
Constructs a new BindException with no detail message.


BindException

public BindException(String s)
Builds a BindException with a detail message.


BindException

public BindException(Exception exception)
Builds a BindException that wraps another exception.