org.objectweb.jonathan.protocols.api
Class CommunicationException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byorg.objectweb.jonathan.apis.kernel.JonathanException
              extended byorg.objectweb.jonathan.protocols.api.CommunicationException
All Implemented Interfaces:
Serializable

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

CommunicationException is a checked exception that indicates that an error occurred when trying to communicate with a remote object interface.

See Also:
Serialized Form

Constructor Summary
CommunicationException()
          Constructs a new CommunicationException with no detail message.
CommunicationException(Exception exception)
          Builds a CommunicationException that wraps another exception.
CommunicationException(String s)
          Builds a CommunicationException with a detail message.
 
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

CommunicationException

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


CommunicationException

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


CommunicationException

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