com.ibm.commerce.foundation.server.services.dataaccess.exception

Class ConfigurationException

  • All Implemented Interfaces:
    java.io.Serializable


    public class ConfigurationException
    extends DataServiceSystemException
    All configuration errors raise this exception at runtime.
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor and Description
      ConfigurationException(java.lang.String messageKey, java.lang.Object[] params, java.lang.String className, java.lang.String methodName)
      Constructor for the exception.
      ConfigurationException(java.lang.String messageKey, java.lang.Object[] params, java.lang.String className, java.lang.String methodName, java.lang.Throwable cause)
      Constructor for the exception that wraps an outstanding exception.
      ConfigurationException(java.lang.String messageKey, java.lang.Object param1, java.lang.Object param2, java.lang.String className, java.lang.String methodName)
      Constructor for the exception with two parameters.
      ConfigurationException(java.lang.String messageKey, java.lang.Object param1, java.lang.Object param2, java.lang.String className, java.lang.String methodName, java.lang.Throwable cause)
      Constructor for the exception with two parameters.
      ConfigurationException(java.lang.String messageKey, java.lang.Object param, java.lang.String className, java.lang.String methodName)
      Constructor for the exception with a single parameter.
      ConfigurationException(java.lang.String messageKey, java.lang.Object param, java.lang.String className, java.lang.String methodName, java.lang.Throwable cause)
      Constructor for the exception with a single parameter that wraps an outstanding exception.
    • Constructor Detail

      • ConfigurationException

        public ConfigurationException(java.lang.String messageKey,
                                      java.lang.Object[] params,
                                      java.lang.String className,
                                      java.lang.String methodName)
        Constructor for the exception.
        Parameters:
        messageKey - key to the resource bundle to locate the message
        params - substitution parameters to the message
        className - the class name where exception is raised.
        methodName - the method name where exception is raised.
      • ConfigurationException

        public ConfigurationException(java.lang.String messageKey,
                                      java.lang.Object param,
                                      java.lang.String className,
                                      java.lang.String methodName)
        Constructor for the exception with a single parameter.
        Parameters:
        messageKey - key to the resource bundle to locate the message.
        param - substitution parameter to the message.
        className - the class name where exception is raised.
        methodName - the method name where exception is raised.
      • ConfigurationException

        public ConfigurationException(java.lang.String messageKey,
                                      java.lang.Object param1,
                                      java.lang.Object param2,
                                      java.lang.String className,
                                      java.lang.String methodName)
        Constructor for the exception with two parameters.
        Parameters:
        messageKey - key to the resource bundle to locate the message.
        param1 - first substitution parameter to the message.
        param2 - second substitution parameter to the message.
        className - the class name where exception is raised.
        methodName - the method name where exception is raised.
      • ConfigurationException

        public ConfigurationException(java.lang.String messageKey,
                                      java.lang.Object[] params,
                                      java.lang.String className,
                                      java.lang.String methodName,
                                      java.lang.Throwable cause)
        Constructor for the exception that wraps an outstanding exception.
        Parameters:
        messageKey - key to the resource bundle to locate the message.
        params - substitution parameters to the message.
        className - the class name where exception is raised.
        methodName - the method name where exception is raised.
        cause - the wrapped exception.
      • ConfigurationException

        public ConfigurationException(java.lang.String messageKey,
                                      java.lang.Object param,
                                      java.lang.String className,
                                      java.lang.String methodName,
                                      java.lang.Throwable cause)
        Constructor for the exception with a single parameter that wraps an outstanding exception.
        Parameters:
        messageKey - key to the resource bundle to locate the message.
        param - substitution parameter to the message.
        className - the class name where exception is raised.
        methodName - the method name where exception is raised.
        cause - the wrapped exception.
      • ConfigurationException

        public ConfigurationException(java.lang.String messageKey,
                                      java.lang.Object param1,
                                      java.lang.Object param2,
                                      java.lang.String className,
                                      java.lang.String methodName,
                                      java.lang.Throwable cause)
        Constructor for the exception with two parameters.
        Parameters:
        messageKey - key to the resource bundle to locate the message.
        param1 - first parameter to the message.
        param2 - second parameter to the message.
        className - the class name where exception is raised.
        methodName - the method name where exception is raised.
        cause - the wrapped exception.