Package org.flowable.engine.delegate
Class BpmnError
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.flowable.common.engine.api.FlowableException
-
- org.flowable.engine.delegate.BpmnError
-
- All Implemented Interfaces:
Serializable
public class BpmnError extends FlowableException
Special exception that can be used to throw a BPMN Error fromJavaDelegates and expressions. This should only be used for business faults, which shall be handled by a Boundary Error Event or Error Event Sub-Process modeled in the process definition. Technical errors should be represented by other exception types. This class represents an actual instance of a BPMN Error, whereasErrorrepresents an Error definition.- Author:
- Tijs Rademakers
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class org.flowable.common.engine.api.FlowableException
isLogged, reduceLogLevel
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddAdditionalData(String name, Object value)VariableContainergetAdditionalDataContainer()StringgetErrorCode()voidsetAdditionalDataContainer(VariableContainer additionalDataContainer)protected voidsetErrorCode(String errorCode)-
Methods inherited from class org.flowable.common.engine.api.FlowableException
isLogged, isReduceLogLevel, setLogged, setReduceLogLevel
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Method Detail
-
setErrorCode
protected void setErrorCode(String errorCode)
-
getErrorCode
public String getErrorCode()
-
getAdditionalDataContainer
public VariableContainer getAdditionalDataContainer()
-
setAdditionalDataContainer
public void setAdditionalDataContainer(VariableContainer additionalDataContainer)
-
-