Class ItemModelCloneCreator.CannotCloneException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- de.hybris.platform.servicelayer.internal.model.impl.ItemModelCloneCreator.CannotCloneException
-
- All Implemented Interfaces:
java.io.Serializable
- Enclosing class:
- ItemModelCloneCreator
public static class ItemModelCloneCreator.CannotCloneException extends java.lang.RuntimeExceptionClone 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 ItemModelCloneCreator.CopyContextgetCopyContext()Returns the copy context of the failed clone operation.java.util.Collection<ItemModel>getCreatedItems()Extracts all newly created copies of the failed clone operation.java.util.Collection<ItemModel>getPendingItems()Extracts all pending source items of the failed clone operation.
-
-
-
Method Detail
-
getCopyContext
public ItemModelCloneCreator.CopyContext getCopyContext()
Returns the copy context of the failed clone operation.
-
getPendingItems
public java.util.Collection<ItemModel> getPendingItems()
Extracts all pending source items of the failed clone operation.
-
getCreatedItems
public java.util.Collection<ItemModel> getCreatedItems()
Extracts all newly created copies of the failed clone operation.
-
-