com.ibm.commerce.inventory.facade.server.exception

Class InventoryApplicationException

  • All Implemented Interfaces:
    java.io.Serializable


    public class InventoryApplicationException
    extends AbstractApplicationException
    This is the Exception class that can be used for any application level exceptions to be thrown during the Inventory services execution. See the constructor details for creating this exception. See documentation for com.ibm.commerce.foundation.common.exception.AbstractApplicationException, for more details on the behaviour of this exception.
    See Also:
    Serialized Form
    • Constructor Detail

      • InventoryApplicationException

        public InventoryApplicationException(java.lang.String messageKey,
                                             java.lang.Object[] params,
                                             java.lang.String className,
                                             java.lang.String methodName)
        Creates the InventoryApplicationException.
        Parameters:
        messageKey - The message key of the exception.
        params - The parameters used for the message key of the exception.
        className - The name of the class throwing the exception.
        methodName - The name of the method throwing the exception.
      • InventoryApplicationException

        public InventoryApplicationException(java.lang.String messageKey,
                                             java.lang.Object[] params,
                                             java.lang.String className,
                                             java.lang.String methodName,
                                             java.lang.Throwable cause)
        Creates the InventoryApplicationException.
        Parameters:
        messageKey - The message key of the exception.
        params - The parameters used for the message key of the exception.
        className - The name of the class throwing the exception.
        methodName - The name of the method throwing the exception.
        cause - The cause of the exception.
      • InventoryApplicationException

        public InventoryApplicationException(java.lang.String message,
                                             java.lang.String className,
                                             java.lang.String methodName,
                                             java.lang.Throwable cause)
        Creates the InventoryApplicationException.
        Parameters:
        message - The message of the exception.
        className - The name of the class throwing the exception.
        methodName - The name of the method throwing the exception.
        cause - The cause of the exception.