summaryrefslogtreecommitdiffstats
path: root/pki/base/common/src/com/netscape/certsrv/selftests/EMissingSelfTestException.java
diff options
context:
space:
mode:
Diffstat (limited to 'pki/base/common/src/com/netscape/certsrv/selftests/EMissingSelfTestException.java')
-rw-r--r--pki/base/common/src/com/netscape/certsrv/selftests/EMissingSelfTestException.java109
1 files changed, 63 insertions, 46 deletions
diff --git a/pki/base/common/src/com/netscape/certsrv/selftests/EMissingSelfTestException.java b/pki/base/common/src/com/netscape/certsrv/selftests/EMissingSelfTestException.java
index 0dc8ef233..88fa14cb0 100644
--- a/pki/base/common/src/com/netscape/certsrv/selftests/EMissingSelfTestException.java
+++ b/pki/base/common/src/com/netscape/certsrv/selftests/EMissingSelfTestException.java
@@ -20,32 +20,38 @@
package com.netscape.certsrv.selftests;
+
///////////////////////
// import statements //
///////////////////////
+
+
//////////////////////
// class definition //
//////////////////////
/**
* This class implements a missing self test exception.
- * EMissingSelfTestExceptions are derived from ESelfTestExceptions in order to
- * allow users to easily do self tests without try-catch clauses.
- *
+ * EMissingSelfTestExceptions are derived from ESelfTestExceptions
+ * in order to allow users to easily do self tests without try-catch clauses.
+ *
* EMissingSelfTestExceptions should be caught by SelfTestSubsystem managers.
* <P>
*
* @version $Revision$, $Date$
*/
-public class EMissingSelfTestException extends ESelfTestException {
- // //////////////////////
+public class EMissingSelfTestException
+ extends ESelfTestException {
+ ////////////////////////
// default parameters //
- // //////////////////////
+ ////////////////////////
+
+
- // /////////////////////
+ ///////////////////////
// helper parameters //
- // /////////////////////
+ ///////////////////////
/**
*
@@ -56,22 +62,26 @@ public class EMissingSelfTestException extends ESelfTestException {
private String mInstanceParameter = null;
private String mInstanceValue = null;
- // ////////////////////////////////////////
+ //////////////////////////////////////////
// EMissingSelfTestException parameters //
- // ////////////////////////////////////////
+ //////////////////////////////////////////
- // /////////////////////////////////////////////
+
+
+ ///////////////////////////////////////////////
// ESelfTestException parameters (inherited) //
- // /////////////////////////////////////////////
+ ///////////////////////////////////////////////
+
- // ///////////////////
+
+ /////////////////////
// default methods //
- // ///////////////////
+ /////////////////////
/**
* Constructs a "missing" self test exception where the name is null
* <P>
- *
+ *
*/
public EMissingSelfTestException() {
super("The self test plugin property name is null.");
@@ -81,12 +91,13 @@ public class EMissingSelfTestException extends ESelfTestException {
* Constructs a "missing" self test exception where the name is always
* missing from a name/value pair.
* <P>
- *
+ *
* @param instanceName missing "instanceName" exception details
*/
public EMissingSelfTestException(String instanceName) {
- super("The self test plugin property named " + instanceName
- + " does not exist.");
+ super("The self test plugin property named "
+ + instanceName
+ + " does not exist.");
// strip preceding/trailing whitespace
// from passed-in String parameters
@@ -102,14 +113,16 @@ public class EMissingSelfTestException extends ESelfTestException {
* Constructs a "missing" self test exception where the value is always
* missing from a name/value pair; (the value passed in is always null).
* <P>
- *
+ *
* @param instanceName missing "instanceName" exception details
- * @param instanceValue missing "instanceValue" exception details (always
- * null)
+ * @param instanceValue missing "instanceValue" exception details
+ * (always null)
*/
- public EMissingSelfTestException(String instanceName, String instanceValue) {
- super("The self test plugin property named " + instanceName
- + " contains no values.");
+ public EMissingSelfTestException(String instanceName,
+ String instanceValue) {
+ super("The self test plugin property named "
+ + instanceName
+ + " contains no values.");
// strip preceding/trailing whitespace
// from passed-in String parameters
@@ -127,19 +140,21 @@ public class EMissingSelfTestException extends ESelfTestException {
/**
* Constructs a "missing" self test exception where the parameter is always
- * missing from a substore.parameter/value pair; (the value passed in may be
- * null).
+ * missing from a substore.parameter/value pair; (the value passed in may
+ * be null).
* <P>
- *
+ *
* @param instanceStore missing "instanceStore" exception details
* @param instanceParameter missing "instanceParameter" exception details
- * @param instanceValue missing "instanceValue" exception details (may be
- * null)
+ * @param instanceValue missing "instanceValue" exception details
+ * (may be null)
*/
public EMissingSelfTestException(String instanceStore,
- String instanceParameter, String instanceValue) {
- super("The self test plugin property named " + instanceStore + "."
- + instanceParameter + " is missing.");
+ String instanceParameter,
+ String instanceValue) {
+ super("The self test plugin property named "
+ + instanceStore + "." + instanceParameter
+ + " is missing.");
// strip preceding/trailing whitespace
// from passed-in String parameters
@@ -159,14 +174,14 @@ public class EMissingSelfTestException extends ESelfTestException {
mInstanceValue = instanceValue;
}
- // //////////////////
+ ////////////////////
// helper methods //
- // //////////////////
+ ////////////////////
/**
* Returns the instance name associated with this self test.
* <P>
- *
+ *
* @return name portion of the name/value pair
*/
public String getInstanceName() {
@@ -176,7 +191,7 @@ public class EMissingSelfTestException extends ESelfTestException {
/**
* Returns the store associated with this self test.
* <P>
- *
+ *
* @return substore portion of the substore.parameter/value pair
*/
public String getInstanceStore() {
@@ -186,7 +201,7 @@ public class EMissingSelfTestException extends ESelfTestException {
/**
* Returns the parameter associated with this self test.
* <P>
- *
+ *
* @return parameter portion of the substore.parameter/value pair
*/
public String getInstanceParameter() {
@@ -196,25 +211,27 @@ public class EMissingSelfTestException extends ESelfTestException {
/**
* Returns the value associated with this self test.
* <P>
- *
+ *
* @return value portion of the name/value pair
*/
public String getInstanceValue() {
return mInstanceValue;
}
- // /////////////////////////////////////
+ ///////////////////////////////////////
// EMissingSelfTestException methods //
- // /////////////////////////////////////
+ ///////////////////////////////////////
+
+
- // //////////////////////////////////////////
+ ////////////////////////////////////////////
// ESelfTestException methods (inherited) //
- // //////////////////////////////////////////
+ ////////////////////////////////////////////
- /*
- * Note that all of the following ESelfTestException methods are inherited
- * from the ESelfTestException class:
- *
+ /* Note that all of the following ESelfTestException methods
+ * are inherited from the ESelfTestException class:
+ *
* public ESelfTestException( String msg );
*/
}
+