Package com.netscape.certsrv.selftests
Class EDuplicateSelfTestException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.netscape.certsrv.base.EBaseException
-
- com.netscape.certsrv.selftests.ESelfTestException
-
- com.netscape.certsrv.selftests.EDuplicateSelfTestException
-
- All Implemented Interfaces:
java.io.Serializable
public class EDuplicateSelfTestException extends ESelfTestException
This class implements a duplicate self test exception. EDuplicateSelfTestExceptions are derived from ESelfTestExceptions in order to allow users to easily do self tests without try-catch clauses. EDuplicateSelfTestExceptions should be caught by SelfTestSubsystem managers.- Version:
- $Revision$, $Date$
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class com.netscape.certsrv.base.EBaseException
mParams
-
-
Constructor Summary
Constructors Constructor Description EDuplicateSelfTestException(java.lang.String instanceName)
Constructs a "duplicate" self test exception.EDuplicateSelfTestException(java.lang.String instanceName, java.lang.String instanceValue)
Constructs a "duplicate" self test exception where the value is always a duplicate from a name/value pairEDuplicateSelfTestException(java.lang.String instanceStore, java.lang.String instanceParameter, java.lang.String instanceValue)
Constructs a "duplicate" self test exception where the parameter is a duplicate from a substore.parameter/value pair; (the value passed in may be null).
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getInstanceName()
Returns the instance name associated with this self test.java.lang.String
getInstanceParameter()
Returns the parameter associated with this self test.java.lang.String
getInstanceStore()
Returns the store associated with this self test.java.lang.String
getInstanceValue()
Returns the value associated with this self test.-
Methods inherited from class com.netscape.certsrv.selftests.ESelfTestException
getBundleName
-
Methods inherited from class com.netscape.certsrv.base.EBaseException
getParameters, toString, toString
-
-
-
-
Constructor Detail
-
EDuplicateSelfTestException
public EDuplicateSelfTestException(java.lang.String instanceName)
Constructs a "duplicate" self test exception.- Parameters:
instanceName
- duplicate "instanceName" exception details
-
EDuplicateSelfTestException
public EDuplicateSelfTestException(java.lang.String instanceName, java.lang.String instanceValue)
Constructs a "duplicate" self test exception where the value is always a duplicate from a name/value pair- Parameters:
instanceName
- duplicate "instanceName" exception detailsinstanceValue
- duplicate "instanceValue" exception details
-
EDuplicateSelfTestException
public EDuplicateSelfTestException(java.lang.String instanceStore, java.lang.String instanceParameter, java.lang.String instanceValue)
Constructs a "duplicate" self test exception where the parameter is a duplicate from a substore.parameter/value pair; (the value passed in may be null).- Parameters:
instanceStore
- duplicate "instanceStore" exception detailsinstanceParameter
- duplicate "instanceParameter" exception detailsinstanceValue
- duplicate "instanceValue" exception details (may be null)
-
-
Method Detail
-
getInstanceName
public java.lang.String getInstanceName()
Returns the instance name associated with this self test.- Returns:
- name portion of the name/value pair
-
getInstanceStore
public java.lang.String getInstanceStore()
Returns the store associated with this self test.- Returns:
- substore portion of the substore.parameter/value pair
-
getInstanceParameter
public java.lang.String getInstanceParameter()
Returns the parameter associated with this self test.- Returns:
- parameter portion of the substore.parameter/value pair
-
getInstanceValue
public java.lang.String getInstanceValue()
Returns the value associated with this self test.- Returns:
- value portion of the name/value pair
-
-