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/quicksetup/org/opends/quicksetup/util/WebBrowserException.java | 9 ++++++---
1 files changed, 6 insertions(+), 3 deletions(-)
diff --git a/opends/src/quicksetup/org/opends/quicksetup/util/WebBrowserException.java b/opends/src/quicksetup/org/opends/quicksetup/util/WebBrowserException.java
index 0cb620a..21de5bc 100644
--- a/opends/src/quicksetup/org/opends/quicksetup/util/WebBrowserException.java
+++ b/opends/src/quicksetup/org/opends/quicksetup/util/WebBrowserException.java
@@ -27,13 +27,16 @@
package org.opends.quicksetup.util;
+import org.opends.server.types.OpenDsException;
+import org.opends.messages.Message;
+
/**
* This class is the exception that we get when we try to launch the user web
* browser and we fail. The exception is generated in WebBrowserLauncher.
*
*/
-public class WebBrowserException extends Exception
-{
+public class WebBrowserException extends OpenDsException {
+
private static final long serialVersionUID = 4283835325192567244L;
private String url;
@@ -44,7 +47,7 @@
* @param msg the error message.
* @param rootCause the root cause.
*/
- public WebBrowserException(String url, String msg, Throwable rootCause)
+ public WebBrowserException(String url, Message msg, Throwable rootCause)
{
super(msg, rootCause);
this.url = url;
--
Gitblit v1.10.0