Class ConversationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.webflow.conversation.ConversationException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
BadlyFormattedConversationIdException
,ConversationLockException
,NoSuchConversationException
The root of the conversation service exception hierarchy.
- Author:
- Keith Donald
- See Also:
-
Constructor Summary
ConstructorDescriptionConversationException
(String message) Creates a conversation service exception.ConversationException
(String message, Throwable cause) Creates a conversation service exception. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ConversationException
Creates a conversation service exception.- Parameters:
message
- a descriptive message
-
ConversationException
Creates a conversation service exception.- Parameters:
message
- a descriptive messagecause
- the root cause of the problem
-