com.ibm.commerce.payments.plugin
Class ConfigurationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.ibm.commerce.edp.api.BaseException
-
- com.ibm.commerce.payments.plugin.PluginException
-
- com.ibm.commerce.payments.plugin.ConfigurationException
-
- All Implemented Interfaces:
- java.io.Serializable
public class ConfigurationException extends PluginException
This exception is thrown by a plug-in when it cannot find required information from
PluginConfiguration
.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor and Description ConfigurationException()
This method is a default constructor.ConfigurationException(java.lang.String resourceBundleName, java.lang.String messageKey, java.lang.Object[] formatArguments, java.lang.String defaultText)
This method is a constructor with a localized message.ConfigurationException(java.lang.String resourceBundleName, java.lang.String messageKey, java.lang.Object[] formatArguments, java.lang.String defaultText, java.lang.Throwable exception)
This method is a constructor with a localized message and a chained exception.ConfigurationException(java.lang.Throwable exception)
This method is a constructor with a chained exception.
-
Method Summary
-
Methods inherited from class com.ibm.commerce.payments.plugin.PluginException
getCredit, getFinancialTransaction, getPayment, getPaymentInstruction, setCredit, setFinancialTransaction, setPayment, setPaymentInstruction
-
Methods inherited from class com.ibm.commerce.edp.api.BaseException
addProperties, addProperties, addProperty, dumpException, getClassSource, getDefaultMessage, getFormatArguments, getLocalizedMessage, getLocalizedMessage, getMessage, getMessageKey, getMethodSource, getPreviousException, getProperties, getResourceBundleName, setClassSource, setDefaultMessage, setFormatArguments, setMessageKey, setMethodSource, setPreviousException, setProperties, setResourceBundleName
-
-
-
-
Constructor Detail
-
ConfigurationException
public ConfigurationException()
This method is a default constructor.
-
ConfigurationException
public ConfigurationException(java.lang.String resourceBundleName, java.lang.String messageKey, java.lang.Object[] formatArguments, java.lang.String defaultText)
This method is a constructor with a localized message.
- Parameters:
resourceBundleName
- The name of the resource bundle to be used to generate a localized exception message.messageKey
- The key to identify the resource to generate a localized exception.formatArguments
- An array of arguments to build the localized message.defaultText
- The message that is shown if the localized message cannot be generated.
-
ConfigurationException
public ConfigurationException(java.lang.String resourceBundleName, java.lang.String messageKey, java.lang.Object[] formatArguments, java.lang.String defaultText, java.lang.Throwable exception)
This method is a constructor with a localized message and a chained exception.
- Parameters:
resourceBundleName
- The name of the resource bundle to be used to generate a localized exception message.messageKey
- The key to identify the resource to generate a localized exception.formatArguments
- An array of arguments to build the localized message.defaultText
- The message that is shown if the localized message cannot be generated.exception
- The exception to be chained.
-
ConfigurationException
public ConfigurationException(java.lang.Throwable exception)
This method is a constructor with a chained exception.
- Parameters:
exception
- The exception to be chained.
-
-