Class BadlyFormattedFlowExecutionKeyException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.webflow.core.FlowException
org.springframework.webflow.execution.repository.FlowExecutionRepositoryException
org.springframework.webflow.execution.repository.BadlyFormattedFlowExecutionKeyException
- All Implemented Interfaces:
Serializable
Thrown when an encoded flow execution key is badly formatted and could not be parsed.
- Author:
- Keith Donald, Erwin Vervaet
- See Also:
-
Constructor Summary
ConstructorDescriptionBadlyFormattedFlowExecutionKeyException
(String invalidKey, String format) Creates a bad execution key format exception.BadlyFormattedFlowExecutionKeyException
(String invalidKey, String format, Throwable cause) Creates a bad execution key format exception. -
Method Summary
Modifier and TypeMethodDescriptionReturns the format the key should have been in.Returns the string key of the flow execution that could not be parsed.Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
BadlyFormattedFlowExecutionKeyException
Creates a bad execution key format exception.- Parameters:
invalidKey
- the invalid keyformat
- the format the key should have been in
-
BadlyFormattedFlowExecutionKeyException
Creates a bad execution key format exception.- Parameters:
invalidKey
- the invalid keyformat
- the format the key should have been incause
- the cause
-
-
Method Details
-
getInvalidKey
Returns the string key of the flow execution that could not be parsed. -
getFormat
Returns the format the key should have been in.
-