mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

matthew_swift
03.36.2007 de19fe2956d5a4b3817834191c51989664f8c47c
opends/src/server/org/opends/server/admin/client/CommunicationException.java
@@ -26,10 +26,14 @@
 */
package org.opends.server.admin.client;
import org.opends.messages.Message;
import static org.opends.messages.AdminMessages.*;
import org.opends.messages.Message;
/**
 * This exception is thrown when a communications related problem
@@ -48,22 +52,23 @@
  /**
   * Create a communication exception.
   * Create a communication exception with a default message.
   */
  public CommunicationException() {
    // No implementation required.
    super(ERR_COMMUNICATION_EXCEPTION_DEFAULT.get());
  }
  /**
   * Create a communication exception with a cause.
   * Create a communication exception with a cause and a default
   * message.
   *
   * @param cause
   *          The cause.
   */
  public CommunicationException(Throwable cause) {
    super(cause);
    super(ERR_COMMUNICATION_EXCEPTION_DEFAULT.get(), cause);
  }