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

matthew_swift
03.36.2007 de19fe2956d5a4b3817834191c51989664f8c47c
opends/src/server/org/opends/server/admin/AdminException.java
@@ -26,38 +26,21 @@
 */
package org.opends.server.admin;
import org.opends.messages.Message;
import org.opends.server.types.OpenDsException;
/**
 * Exceptions thrown when interacting with administration framework.
 */
public abstract class AdminException extends OpenDsException {
  /**
   * Create an admin exception.
   */
  protected AdminException() {
    // No implementation required.
  }
  /**
   * Create an admin exception with a cause.
   *
   * @param cause
   *          The cause.
   */
  protected AdminException(Throwable cause) {
    super(cause);
  }
  /**
   * Create an admin exception with a message and cause.
   *
   * @param message