Package io.zeebe.engine.processing.bpmn
Class BpmnProcessingException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- io.zeebe.engine.processing.bpmn.BpmnProcessingException
-
- All Implemented Interfaces:
Serializable
public final class BpmnProcessingException extends RuntimeException
Something went wrong during the workflow processing. This kind of exception should not be handled.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description BpmnProcessingException(BpmnElementContext context, String message)The failure message of the exception is build from the given context and the message.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
BpmnProcessingException
public BpmnProcessingException(BpmnElementContext context, String message)
The failure message of the exception is build from the given context and the message.- Parameters:
context- workflow instance-related data of the element that is executedmessage- the failure message
-
-