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/guitools/org/opends/guitools/statuspanel/ConfigException.java |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/opends/src/guitools/org/opends/guitools/statuspanel/ConfigException.java b/opends/src/guitools/org/opends/guitools/statuspanel/ConfigException.java
index 3b69fce..f2c5156 100644
--- a/opends/src/guitools/org/opends/guitools/statuspanel/ConfigException.java
+++ b/opends/src/guitools/org/opends/guitools/statuspanel/ConfigException.java
@@ -27,12 +27,14 @@
 
 package org.opends.guitools.statuspanel;
 
+import org.opends.messages.Message;
+import org.opends.server.types.OpenDsException;
 
 /**
  * Exception thrown when there is an error with the configuration (for instance
  * a valid URL for the requested protocol could not be found).
  */
-public class ConfigException extends Exception
+public class ConfigException extends OpenDsException
 {
   private static final long serialVersionUID = 1266482779183126905L;
 
@@ -40,7 +42,7 @@
    * Constructor for the exception.
    * @param msg the localized message to be used.
    */
-  public ConfigException(String msg)
+  public ConfigException(Message msg)
   {
     super(msg);
   }

--
Gitblit v1.10.0