Class ChainExceptionImpl
- java.lang.Object
-
- org.nuxeo.ecm.automation.core.exception.ChainExceptionImpl
-
- All Implemented Interfaces:
ChainException
public class ChainExceptionImpl extends Object implements ChainException
- Since:
- 5.7.3
-
-
Field Summary
Fields Modifier and Type Field Description protected ArrayList<CatchChainException>
catchChainExceptions
protected String
id
protected String
onChainId
-
Constructor Summary
Constructors Constructor Description ChainExceptionImpl(String id, String onChainId, ArrayList<CatchChainException> chainExceptionRuns)
ChainExceptionImpl(ChainExceptionDescriptor chainExceptionDescriptor)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ArrayList<CatchChainException>
getCatchChainExceptions()
String
getId()
String
getOnChainId()
-
-
-
Field Detail
-
id
protected final String id
-
onChainId
protected final String onChainId
-
catchChainExceptions
protected final ArrayList<CatchChainException> catchChainExceptions
-
-
Constructor Detail
-
ChainExceptionImpl
public ChainExceptionImpl(String id, String onChainId, ArrayList<CatchChainException> chainExceptionRuns)
-
ChainExceptionImpl
public ChainExceptionImpl(ChainExceptionDescriptor chainExceptionDescriptor)
-
-
Method Detail
-
getId
public String getId()
- Specified by:
getId
in interfaceChainException
-
getOnChainId
public String getOnChainId()
- Specified by:
getOnChainId
in interfaceChainException
-
getCatchChainExceptions
public ArrayList<CatchChainException> getCatchChainExceptions()
- Specified by:
getCatchChainExceptions
in interfaceChainException
-
-