From 80c58327faaa4873369f6bb949e62792c2f708e0 Mon Sep 17 00:00:00 2001
From: kenneth_suter <kenneth_suter@localhost>
Date: Wed, 15 Aug 2007 21:34:53 +0000
Subject: [PATCH] This commit is a step toward getting OpenDS internationalized. There are still issues to be resolved before we can declare that we are internationalized but this commit covers the bulk of changes needed at this time.

---
 opends/src/server/org/opends/server/admin/client/AdminSecurityException.java |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/opends/src/server/org/opends/server/admin/client/AdminSecurityException.java b/opends/src/server/org/opends/server/admin/client/AdminSecurityException.java
index 138f75e..e372487 100644
--- a/opends/src/server/org/opends/server/admin/client/AdminSecurityException.java
+++ b/opends/src/server/org/opends/server/admin/client/AdminSecurityException.java
@@ -26,6 +26,8 @@
  */
 
 package org.opends.server.admin.client;
+import org.opends.messages.Message;
+
 
 
 
@@ -66,7 +68,7 @@
    * @param cause
    *          The cause.
    */
-  protected AdminSecurityException(String message, Throwable cause) {
+  protected AdminSecurityException(Message message, Throwable cause) {
     super(message, cause);
   }
 
@@ -78,7 +80,7 @@
    * @param message
    *          The message.
    */
-  protected AdminSecurityException(String message) {
+  protected AdminSecurityException(Message message) {
     super(message);
   }
 }

--
Gitblit v1.10.0