summaryrefslogtreecommitdiffstats
path: root/pki/base/common/src/com/netscape/certsrv/selftests/ESelfTestException.java
diff options
context:
space:
mode:
Diffstat (limited to 'pki/base/common/src/com/netscape/certsrv/selftests/ESelfTestException.java')
-rw-r--r--pki/base/common/src/com/netscape/certsrv/selftests/ESelfTestException.java123
1 files changed, 123 insertions, 0 deletions
diff --git a/pki/base/common/src/com/netscape/certsrv/selftests/ESelfTestException.java b/pki/base/common/src/com/netscape/certsrv/selftests/ESelfTestException.java
new file mode 100644
index 000000000..2124e5d4a
--- /dev/null
+++ b/pki/base/common/src/com/netscape/certsrv/selftests/ESelfTestException.java
@@ -0,0 +1,123 @@
+// --- BEGIN COPYRIGHT BLOCK ---
+// This program is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; version 2 of the License.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License along
+// with this program; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+//
+// (C) 2007 Red Hat, Inc.
+// All rights reserved.
+// --- END COPYRIGHT BLOCK ---
+// package statement //
+///////////////////////
+
+package com.netscape.certsrv.selftests;
+
+
+///////////////////////
+// import statements //
+///////////////////////
+
+import com.netscape.certsrv.base.*;
+
+
+//////////////////////
+// class definition //
+//////////////////////
+
+/**
+ * This class implements a self test exception. ESelfTestExceptions
+ * are derived from EBaseExceptions in order to allow users
+ * to easily do self tests without try-catch clauses.
+ *
+ * ESelfTestExceptions should be caught by SelfTestSubsystem managers.
+ * <P>
+ *
+ * @version $Revision$, $Date$
+ */
+public class ESelfTestException
+ extends EBaseException {
+ ////////////////////////
+ // default parameters //
+ ////////////////////////
+
+
+
+ ///////////////////////////////////
+ // ESelfTestException parameters //
+ ///////////////////////////////////
+
+ private static final String SELFTEST_RESOURCES = SelfTestResources.class.getName();
+
+
+ ///////////////////////////////////////////
+ // EBaseException parameters (inherited) //
+ ///////////////////////////////////////////
+
+ /* Note that all of the following EBaseException parameters
+ * are inherited from the EBaseException class:
+ *
+ * public Object mParams[];
+ */
+
+
+
+ /////////////////////
+ // default methods //
+ /////////////////////
+
+ /**
+ * Constructs a self test exception.
+ * <P>
+ *
+ * @param msg exception details
+ */
+ public ESelfTestException(String msg) {
+ super(msg);
+ }
+
+
+ ////////////////////////////////
+ // ESelfTestException methods //
+ ////////////////////////////////
+
+ /**
+ * Returns the bundle file name.
+ * <P>
+ * @return name of bundle class associated with this exception.
+ */
+ protected String getBundleName() {
+ return SELFTEST_RESOURCES;
+ }
+
+
+ ////////////////////////////////////////
+ // EBaseException methods (inherited) //
+ ////////////////////////////////////////
+
+ /* Note that all of the following EBaseException methods
+ * are inherited from the EBaseException class:
+ *
+ * public EBaseException( String msgFormat );
+ *
+ * public EBaseException( String msgFormat, String param );
+ *
+ * public EBaseException( String msgFormat, Exception param );
+ *
+ * public EBaseException( String msgFormat, Object params[] );
+ *
+ * public Object[] getParameters();
+ *
+ * public String toString();
+ *
+ * public String toString( Locale locale );
+ */
+}
+