Package de.hybris.platform.jalo.type
Class ItemCloneCreator.CannotCloneException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- de.hybris.platform.jalo.JaloSystemException
-
- de.hybris.platform.jalo.type.ItemCloneCreator.CannotCloneException
-
- All Implemented Interfaces:
java.io.Serializable
- Enclosing class:
- ItemCloneCreator
public static class ItemCloneCreator.CannotCloneException extends JaloSystemException
Clone error class. Holds copy context and pending items. Please note that when you're getting this exception some items may have been already copied!- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ItemCloneCreator.CopyContextgetCopyContext()Returns the copy context of the failed clone operation.java.util.Collection<Item>getCreatedItems()Extracts all newly created copies of the failed clone operation.java.util.Collection<Item>getPendingItems()Extracts all pending source items of the failed clone operation.-
Methods inherited from class de.hybris.platform.jalo.JaloSystemException
getErrorCode, getThrowable, toString
-
-
-
-
Method Detail
-
getCopyContext
public ItemCloneCreator.CopyContext getCopyContext()
Returns the copy context of the failed clone operation.
-
getPendingItems
public java.util.Collection<Item> getPendingItems()
Extracts all pending source items of the failed clone operation.
-
getCreatedItems
public java.util.Collection<Item> getCreatedItems()
Extracts all newly created copies of the failed clone operation.
-
-