From cfc513043c5830b5a967733066068c7097b42e3c 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.
---
opendj-sdk/opends/src/server/org/opends/server/tools/SSLConnectionException.java | 11 +++++++----
1 files changed, 7 insertions(+), 4 deletions(-)
diff --git a/opendj-sdk/opends/src/server/org/opends/server/tools/SSLConnectionException.java b/opendj-sdk/opends/src/server/org/opends/server/tools/SSLConnectionException.java
index 7e5160e..bcdf8ae 100644
--- a/opendj-sdk/opends/src/server/org/opends/server/tools/SSLConnectionException.java
+++ b/opendj-sdk/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