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/UserDataConfirmationException.java | 8 +++++---
1 files changed, 5 insertions(+), 3 deletions(-)
diff --git a/opends/src/quicksetup/org/opends/quicksetup/UserDataConfirmationException.java b/opends/src/quicksetup/org/opends/quicksetup/UserDataConfirmationException.java
index 951b493..251c871 100644
--- a/opends/src/quicksetup/org/opends/quicksetup/UserDataConfirmationException.java
+++ b/opends/src/quicksetup/org/opends/quicksetup/UserDataConfirmationException.java
@@ -27,6 +27,8 @@
package org.opends.quicksetup;
+import org.opends.messages.Message;
+
/**
* This exception is used when there is an confirmation to be asked
* concerning the data provided by the user. It will be thrown by the class
@@ -40,11 +42,11 @@
/**
* Constructor for UserDataConfirmationException.
* @param step the step in the wizard where the exception occurred.
- * @param localizedMessage the localized message describing the error.
+ * @param message the localized message describing the error.
*/
- public UserDataConfirmationException(WizardStep step, String localizedMessage)
+ public UserDataConfirmationException(WizardStep step, Message message)
{
- super(step, localizedMessage);
+ super(step, message);
}
}
--
Gitblit v1.10.0