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/quicksetup/org/opends/quicksetup/UserDataCertificateException.java |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/opends/src/quicksetup/org/opends/quicksetup/UserDataCertificateException.java b/opends/src/quicksetup/org/opends/quicksetup/UserDataCertificateException.java
index 3d3727d4..d6e3304 100644
--- a/opends/src/quicksetup/org/opends/quicksetup/UserDataCertificateException.java
+++ b/opends/src/quicksetup/org/opends/quicksetup/UserDataCertificateException.java
@@ -26,6 +26,7 @@
  */
 
 package org.opends.quicksetup;
+import org.opends.messages.Message;
 
 import java.security.cert.X509Certificate;
 
@@ -64,7 +65,7 @@
   /**
    * Constructor for UserDataCertificateException.
    * @param step the step in the wizard where the exception occurred.
-   * @param localizedMessage the localized message describing the error.
+   * @param message describing the error.
    * @param t the root cause for this exception.
    * @param host the host we tried to connect to.
    * @param port the port we tried to connect to.
@@ -72,11 +73,11 @@
    * @param authType the authentication type.
    * @param type the type of the exception.
    */
-  public UserDataCertificateException(WizardStep step, String localizedMessage,
+  public UserDataCertificateException(WizardStep step, Message message,
       Throwable t, String host, int port, X509Certificate[] chain,
       String authType, Type type)
   {
-    super(step, localizedMessage);
+    super(step, message);
     initCause(t);
     this.host = host;
     this.port = port;

--
Gitblit v1.10.0