org.opends.server.admin.client
Class CommunicationException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by org.opends.server.types.OpenDsException
              extended by org.opends.server.admin.AdminException
                  extended by org.opends.server.admin.client.AdminClientException
                      extended by org.opends.server.admin.client.CommunicationException
All Implemented Interfaces:
java.io.Serializable

public class CommunicationException
extends AdminClientException

This exception is thrown when a communications related problem occurs whilst interacting with the Directory Server. This may be caused by problems such as network partitioning, the unavailability of the Directory Server, or other failures on the client or server side.

See Also:
Serialized Form

Constructor Summary
CommunicationException()
          Create a communication exception with a default message.
CommunicationException(Message message)
          Create a communication exception with a message.
CommunicationException(Message message, java.lang.Throwable cause)
          Create a communication exception with a message and cause.
CommunicationException(java.lang.Throwable cause)
          Create a communication exception with a cause and a default message.
 
Method Summary
 
Methods inherited from class org.opends.server.types.OpenDsException
getMessageObject
 
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

CommunicationException

public CommunicationException()
Create a communication exception with a default message.


CommunicationException

public CommunicationException(java.lang.Throwable cause)
Create a communication exception with a cause and a default message.

Parameters:
cause - The cause.

CommunicationException

public CommunicationException(Message message,
                              java.lang.Throwable cause)
Create a communication exception with a message and cause.

Parameters:
message - The message.
cause - The cause.

CommunicationException

public CommunicationException(Message message)
Create a communication exception with a message.

Parameters:
message - The message.