Class IntegrationAttributeProcessingException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- de.hybris.platform.integrationservices.exception.IntegrationAttributeException
-
- de.hybris.platform.integrationservices.exception.IntegrationAttributeProcessingException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
AttributePersistenceException,InvalidAttributeValueException,VirtualAttributeExecutionException
public abstract class IntegrationAttributeProcessingException extends IntegrationAttributeException
This is a "root" super class for all exception indicating problem with attribute reading/writing for a specific item model. If such exception is thrown for one item model, it does not mean it's going to be thrown for another item model. If a problem is systemic and is caused by an invalid attribute definition then those exceptions should extendIntegrationAttributeExceptionbypassing this class in their hierarchy.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description IntegrationAttributeProcessingException(java.lang.String message, TypeAttributeDescriptor descriptor)Instantiates this exceptionIntegrationAttributeProcessingException(java.lang.String message, TypeAttributeDescriptor descriptor, java.lang.Throwable cause)Instantiates this exception
-
Method Summary
-
Methods inherited from class de.hybris.platform.integrationservices.exception.IntegrationAttributeException
getAttributeDescriptor, getAttributeName, getIntegrationItemCode
-
-
-
-
Constructor Detail
-
IntegrationAttributeProcessingException
public IntegrationAttributeProcessingException(java.lang.String message, TypeAttributeDescriptor descriptor)Instantiates this exception- Parameters:
message- a message to be used for this exception. If this message contains format parameter placeholders, e.g."%s", then the message will be used as a template and the placeholders will be replaced in this order:attributeName,ioItemCodedescriptor- descriptor of the attribute, for which the exception is thrown.
-
IntegrationAttributeProcessingException
public IntegrationAttributeProcessingException(java.lang.String message, TypeAttributeDescriptor descriptor, java.lang.Throwable cause)Instantiates this exception- Parameters:
message- a message to be used for this exception. If this message contains format parameter placeholders, e.g."%s", then the message will be used as a template and the placeholders will be replaced in this order:attributeName,ioItemCodedescriptor- descriptor of the attribute, for which the exception is thrown.cause- an intercepted exception that caused this exception to be thrown
-
-