From de19fe2956d5a4b3817834191c51989664f8c47c Mon Sep 17 00:00:00 2001
From: matthew_swift <matthew_swift@localhost>
Date: Mon, 03 Sep 2007 20:36:20 +0000
Subject: [PATCH] Fix issue 1443: Admin framework: improve error logging in server

---
 opends/src/server/org/opends/server/admin/AdminException.java |   25 ++++---------------------
 1 files changed, 4 insertions(+), 21 deletions(-)

diff --git a/opends/src/server/org/opends/server/admin/AdminException.java b/opends/src/server/org/opends/server/admin/AdminException.java
index 20937f1..bdb8eda 100644
--- a/opends/src/server/org/opends/server/admin/AdminException.java
+++ b/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

--
Gitblit v1.10.0