From 81d36161ce5367fa7aa9a5d99dc8b80eacfa7cdf Mon Sep 17 00:00:00 2001
From: Nicolas Capponi <nicolas.capponi@forgerock.com>
Date: Fri, 24 Jan 2014 14:43:46 +0000
Subject: [PATCH] Checkpoint commit for OPENDJ-1288 : Migrate I18n and logging support to i18n framework and SLF4J
---
opendj3-server-dev/src/quicksetup/org/opends/quicksetup/UserDataException.java | 7 ++++---
1 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/opendj3-server-dev/src/quicksetup/org/opends/quicksetup/UserDataException.java b/opendj3-server-dev/src/quicksetup/org/opends/quicksetup/UserDataException.java
index 1fc54bc..923f3ba 100644
--- a/opendj3-server-dev/src/quicksetup/org/opends/quicksetup/UserDataException.java
+++ b/opendj3-server-dev/src/quicksetup/org/opends/quicksetup/UserDataException.java
@@ -22,11 +22,12 @@
*
*
* Copyright 2006-2008 Sun Microsystems, Inc.
+ * Portions Copyright 2014 ForgeRock AS
*/
package org.opends.quicksetup;
-import org.opends.messages.Message;
+import org.forgerock.i18n.LocalizableMessage;
import org.opends.server.types.OpenDsException;
/**
@@ -46,7 +47,7 @@
* @param step the step in the wizard where the exception occurred.
* @param message the localized message describing the error.
*/
- public UserDataException(WizardStep step, Message message)
+ public UserDataException(WizardStep step, LocalizableMessage message)
{
super(message);
this.step = step;
@@ -58,7 +59,7 @@
* @param message the localized message describing the error.
* @param t the Exception that generated this exception.
*/
- public UserDataException(WizardStep step, Message message, Throwable t)
+ public UserDataException(WizardStep step, LocalizableMessage message, Throwable t)
{
super(message, t);
this.step = step;
--
Gitblit v1.10.0