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/server/org/opends/server/tools/SSLConnectionException.java |   11 +++++++----
 1 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/opends/src/server/org/opends/server/tools/SSLConnectionException.java b/opends/src/server/org/opends/server/tools/SSLConnectionException.java
index 7e5160e..bcdf8ae 100644
--- a/opends/src/server/org/opends/server/tools/SSLConnectionException.java
+++ b/opends/src/server/org/opends/server/tools/SSLConnectionException.java
@@ -25,6 +25,10 @@
  *      Portions Copyright 2006-2007 Sun Microsystems, Inc.
  */
 package org.opends.server.tools;
+import org.opends.messages.Message;
+
+import org.opends.server.types.OpenDsException;
+
 
 
 /**
@@ -32,8 +36,7 @@
  * creating an SSL connection.
  */
 public class SSLConnectionException
-       extends Exception
-{
+       extends OpenDsException {
 
 
 
@@ -53,7 +56,7 @@
    *
    * @param  message    The message to use for this exception.
    */
-  public SSLConnectionException(String message)
+  public SSLConnectionException(Message message)
   {
     super(message);
 
@@ -69,7 +72,7 @@
    * @param  cause      The underlying cause that triggered this
    *                    exception.
    */
-  public SSLConnectionException(String message, Throwable cause)
+  public SSLConnectionException(Message message, Throwable cause)
   {
     super(message, cause);
 

--
Gitblit v1.10.0