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/server/org/opends/server/util/LDIFException.java |   11 ++++++-----
 1 files changed, 6 insertions(+), 5 deletions(-)

diff --git a/opendj3-server-dev/src/server/org/opends/server/util/LDIFException.java b/opendj3-server-dev/src/server/org/opends/server/util/LDIFException.java
index daa811eb..2d7abdb 100644
--- a/opendj3-server-dev/src/server/org/opends/server/util/LDIFException.java
+++ b/opendj3-server-dev/src/server/org/opends/server/util/LDIFException.java
@@ -22,9 +22,10 @@
  *
  *
  *      Copyright 2006-2009 Sun Microsystems, Inc.
+ *      Portions Copyright 2014 ForgeRock AS
  */
 package org.opends.server.util;
-import org.opends.messages.Message;
+import org.forgerock.i18n.LocalizableMessage;
 
 
 
@@ -69,7 +70,7 @@
    *
    * @param  message    The message to use for this LDIF exception.
    */
-  public LDIFException(Message message)
+  public LDIFException(LocalizableMessage message)
   {
     super(message);
 
@@ -86,7 +87,7 @@
    * @param  message    The message to use for this LDIF exception.
    * @param  cause      The underlying cause that triggered this LDIF exception.
    */
-  public LDIFException(Message message, Throwable cause)
+  public LDIFException(LocalizableMessage message, Throwable cause)
   {
     super(message, cause);
 
@@ -106,7 +107,7 @@
    * @param  canContinueReading  Indicates whether it is possible to continue
    *                             reading from the LDIF input source.
    */
-  public LDIFException(Message message, Number lineNumber,
+  public LDIFException(LocalizableMessage message, Number lineNumber,
                        boolean canContinueReading)
   {
     super(message);
@@ -129,7 +130,7 @@
    * @param  cause               The underlying cause that triggered this LDIF
    *                             exception.
    */
-  public LDIFException(Message message, Number lineNumber,
+  public LDIFException(LocalizableMessage message, Number lineNumber,
                        boolean canContinueReading, Throwable cause)
   {
     super(message, cause);

--
Gitblit v1.10.0