Class FlowchartToBpmnConversionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
de.xima.fc.workflow.converter.bpmn.FlowchartToBpmnConversionException
- All Implemented Interfaces:
Serializable
Exception thrown when the
FlowchartToBpmnConverter fails.- Since:
- 8.4.0
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionFlowchartToBpmnConversionException(String message) Creates a newFlowchartToBpmnConversionExceptionwith the given message.FlowchartToBpmnConversionException(String message, Throwable cause) Creates a newFlowchartToBpmnConversionExceptionwith the given message and cause.Creates a newFlowchartToBpmnConversionExceptionwith the given cause. -
Method Summary
Modifier and TypeMethodDescriptionWraps the given exception in aFlowchartToBpmnConversionExceptionif it is not already one.Methods inherited from class Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
FlowchartToBpmnConversionException
Creates a newFlowchartToBpmnConversionExceptionwith the given message.- Parameters:
message- the message
-
FlowchartToBpmnConversionException
Creates a newFlowchartToBpmnConversionExceptionwith the given cause.- Parameters:
cause- the cause
-
FlowchartToBpmnConversionException
Creates a newFlowchartToBpmnConversionExceptionwith the given message and cause.- Parameters:
message- the messagecause- the cause
-
-
Method Details
-
wrap
Wraps the given exception in aFlowchartToBpmnConversionExceptionif it is not already one.- Parameters:
e- The exception to wrap- Returns:
- Either the given exception when already of this type, otherwise the wrapped exception.
-