com.ibm.commerce.foundation.dataload.exception

Class DataLoadConfigException

  • All Implemented Interfaces:
    java.io.Serializable


    public class DataLoadConfigException
    extends DataLoadException

    This class defines the exceptions thrown when data load configuration errors occur during the processing of business object data.

    When a DataLoadConfigException is thrown, the data load main program prints the error message and terminates.

    Configuration errors are treated as unrecoverable errors and will terminate the program execution immediately, regardless of whether the error tolerance level has been reached.

    See Also:
    Serialized Form
    • Field Detail

      • COPYRIGHT

        public static final java.lang.String COPYRIGHT
        IBM Copyright notice field.
        See Also:
        Constant Field Values
    • Constructor Detail

      • DataLoadConfigException

        public DataLoadConfigException()
        This is the default constructor for this class,calls super class constructor.
      • DataLoadConfigException

        public DataLoadConfigException(java.lang.String message)
        This is a constructor for this class which has one parameter.
        Parameters:
        message - An DataLoadMessageKeys object used for describing the exception.
      • DataLoadConfigException

        public DataLoadConfigException(java.lang.String message,
                                       java.lang.String className,
                                       java.lang.String methodName)
        This is a constructor for this class which has three parameters.
        Parameters:
        message - An DataLoadMessageKeys object used for describing the exception.
        className - The name of the class that threw this DataLoadConfigException.
        methodName - The name of the method that threw this DataLoadConfigException.
      • DataLoadConfigException

        public DataLoadConfigException(java.lang.String message,
                                       java.lang.String className,
                                       java.lang.String methodName,
                                       java.lang.Throwable cause)
        This is a constructor for this class which has four parameters.
        Parameters:
        message - An DataLoadMessageKeys object used for describing the exception.
        className - The name of the class that threw this DataLoadConfigException.
        methodName - The name of the method that threw this DataLoadConfigException.
        cause - The exception causing at the original point of failure.
      • DataLoadConfigException

        public DataLoadConfigException(java.lang.String message,
                                       java.lang.Object[] param,
                                       java.lang.String className,
                                       java.lang.String methodName)
        This is a constructor for this class which has four parameters.
        Parameters:
        message - An DataLoadMessageKeys object used for describing the exception.
        param - An Object array of parameter values to be passed to the message.
        className - The name of the class that threw this DataLoadConfigException.
        methodName - The name of the method that threw this DataLoadConfigException.
      • DataLoadConfigException

        public DataLoadConfigException(java.lang.String message,
                                       java.lang.Object[] param,
                                       java.lang.String className,
                                       java.lang.String methodName,
                                       java.lang.Throwable cause)
        This is a constructor for this class which has five parameters.
        Parameters:
        message - An DataLoadMessageKeys object used for describing the exception.
        param - An Object array of parameter values to be passed to the message.
        className - The name of the class that threw this DataLoadConfigException.
        methodName - The name of the method that threw this DataLoadConfigException.
        cause - The exception causing at the original point of failure.