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

boli
01.27.2007 455897cc245b67d929f409a93cfa7106e835cc1f
opends/src/server/org/opends/server/tools/LDAPConnectionException.java
@@ -22,27 +22,17 @@
 * CDDL HEADER END
 *
 *
 *      Portions Copyright 2006 Sun Microsystems, Inc.
 *      Portions Copyright 2006-2007 Sun Microsystems, Inc.
 */
package org.opends.server.tools;
import static org.opends.server.loggers.Debug.*;
/**
 * This class defines an exception that may be thrown during the course of
 * creating an LDAP connection to the server.
 */
public class LDAPConnectionException extends Exception
{
  /**
   * The fully-qualified name of this class for debugging purposes.
   */
  private static final String CLASS_NAME =
       "org.opends.server.tools.LDAPConnectionException";
@@ -70,7 +60,6 @@
  {
    super(message);
    assert debugConstructor(CLASS_NAME, String.valueOf(message));
  }
@@ -84,7 +73,6 @@
  {
    super(message);
    assert debugConstructor(CLASS_NAME, String.valueOf(message));
    this.errorCode = errorCode;
  }
@@ -101,8 +89,6 @@
  {
    super(message, cause);
    assert debugConstructor(CLASS_NAME, String.valueOf(message),
                            String.valueOf(cause));
  }
@@ -120,8 +106,6 @@
  {
    super(message, cause);
    assert debugConstructor(CLASS_NAME, String.valueOf(message),
        String.valueOf(cause));
    this.errorCode = errorCode;
  }