From 7e014d165df1bf3dd13ffc4a5d8906a0b1561eba Mon Sep 17 00:00:00 2001
From: jvergara <jvergara@localhost>
Date: Fri, 17 Aug 2007 00:53:26 +0000
Subject: [PATCH] The following modifications have the following goals:
---
opendj-sdk/opends/src/quicksetup/org/opends/quicksetup/UserDataException.java | 12 ++++++++++++
1 files changed, 12 insertions(+), 0 deletions(-)
diff --git a/opendj-sdk/opends/src/quicksetup/org/opends/quicksetup/UserDataException.java b/opendj-sdk/opends/src/quicksetup/org/opends/quicksetup/UserDataException.java
index 0d02e3b..9faad80 100644
--- a/opendj-sdk/opends/src/quicksetup/org/opends/quicksetup/UserDataException.java
+++ b/opendj-sdk/opends/src/quicksetup/org/opends/quicksetup/UserDataException.java
@@ -54,6 +54,18 @@
}
/**
+ * Constructor for UserDataException.
+ * @param step the step in the wizard where the exception occurred.
+ * @param message the localized message describing the error.
+ * @param t the Exception that generated this exception.
+ */
+ public UserDataException(WizardStep step, Message message, Throwable t)
+ {
+ super(message, t);
+ this.step = step;
+ }
+
+ /**
* Returns the step of the wizard in which this exception occurred.
* @return the step of the wizard in which this exception occurred.
*/
--
Gitblit v1.10.0