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/protocols/asn1/GSERException.java | 7 ++++---
1 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/opendj3-server-dev/src/server/org/opends/server/protocols/asn1/GSERException.java b/opendj3-server-dev/src/server/org/opends/server/protocols/asn1/GSERException.java
index 841cb67..8f9556b 100644
--- a/opendj3-server-dev/src/server/org/opends/server/protocols/asn1/GSERException.java
+++ b/opendj3-server-dev/src/server/org/opends/server/protocols/asn1/GSERException.java
@@ -22,12 +22,13 @@
*
*
* Copyright 2013-2014 Manuel Gaupp
+ * Portions Copyright 2014 ForgeRock AS
*/
package org.opends.server.protocols.asn1;
-import org.opends.messages.Message;
+import org.forgerock.i18n.LocalizableMessage;
import org.opends.server.types.IdentifiedException;
@@ -55,7 +56,7 @@
*
* @param message The message that explains the problem that occurred.
*/
- public GSERException(Message message)
+ public GSERException(LocalizableMessage message)
{
super(message);
}
@@ -69,7 +70,7 @@
* @param message The message that explains the problem that occurred.
* @param cause The exception that was caught to trigger this exception.
*/
- public GSERException(Message message, Throwable cause)
+ public GSERException(LocalizableMessage message, Throwable cause)
{
super(message, cause);
}
--
Gitblit v1.10.0