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

matthew_swift
03.36.2007 550b1d6e3a093fbf315c4bcee971736f722e0830
opendj-sdk/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