com.ibm.commerce.exception
Class InvalidParameterValueException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.ibm.websphere.exception.DistributedException
-
- com.ibm.websphere.command.CommandException
-
- com.ibm.commerce.exception.ECException
-
- com.ibm.commerce.exception.ECApplicationException
-
- com.ibm.commerce.exception.InvalidParameterValueException
-
- All Implemented Interfaces:
- com.ibm.commerce.exception.ECCorrelatedIdentity, com.ibm.websphere.exception.DistributedExceptionEnabled, java.io.Serializable
public class InvalidParameterValueException extends ECApplicationException
This class defines the exception thrown by the WebSphere Commerce Application Server when a parameter error occurs. An example of a parameter error is an incorrect parameter value such an integer parameter that contains alpha characters.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field and Description static java.lang.String
PARAM_NAME
The default value of the parameter name.static java.lang.String
PARAM_VAL
The default value of the parameter value.-
Fields inherited from class com.ibm.commerce.exception.ECApplicationException
ERROR_TYPE, GENERIC_ERROR_TASK
-
Fields inherited from class com.ibm.commerce.exception.ECException
APPLICATION_ERROR, ECMESSAGE, ECMESSAGEKEY, EXCEP_DATA, EXCEP_TYPE, EXCEPTION, GENERIC_APPLICATION_ERROR_TASK, GENERIC_SYSTEM_ERROR_TASK, MSG_PARAM, SYSTEM_ERROR
-
-
Constructor Summary
Constructors Constructor and Description InvalidParameterValueException(java.lang.String key, java.lang.String val)
This is the constructor for this class.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description java.lang.String
getParamName()
This method gets the parameter name.java.lang.String
getParamValue()
This method gets the parameter value.-
Methods inherited from class com.ibm.commerce.exception.ECApplicationException
getECParameterErrors, getErrorType, getExceptionFields, getGenericErrorTask, getMessage, setExceptionField, setExceptionFields
-
Methods inherited from class com.ibm.commerce.exception.ECException
addLogData, addLogData, getCorrelationIdentifier, getECMessage, getErrorMessageKey, getErrorProperties, getErrorTaskName, getMessageKey, getMessageParameters, getStackTrace, getSymptomData, getThrowable, getUserMessage, isRecoverable, printStackTrace, printStackTrace, setErrorTaskName, setException, setOrginatingCommand, setRecoverable, setThrowable
-
Methods inherited from class com.ibm.websphere.exception.DistributedException
getException, getExceptionInfo, getOriginalException, getPreviousException, printStackTrace, printSuperStackTrace, printSuperStackTrace, setDefaultMessage, setLocalizationInfo
-
-
-
-
Field Detail
-
PARAM_NAME
public static final java.lang.String PARAM_NAME
The default value of the parameter name.- See Also:
- Constant Field Values
-
PARAM_VAL
public static final java.lang.String PARAM_VAL
The default value of the parameter value.- See Also:
- Constant Field Values
-
-