Spring Web Flow

org.springframework.webflow.conversation
Class ConversationException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by org.springframework.webflow.conversation.ConversationException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
BadlyFormattedConversationIdException, ConversationLockException, NoSuchConversationException

public abstract class ConversationException
extends java.lang.RuntimeException

The root of the conversation service exception hierarchy.

Author:
Keith Donald
See Also:
Serialized Form

Constructor Summary
ConversationException(java.lang.String message)
          Creates a conversation service exception.
ConversationException(java.lang.String message, java.lang.Throwable cause)
          Creates a conversation service exception.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ConversationException

public ConversationException(java.lang.String message)
Creates a conversation service exception.

Parameters:
message - a descriptive message

ConversationException

public ConversationException(java.lang.String message,
                             java.lang.Throwable cause)
Creates a conversation service exception.

Parameters:
message - a descriptive message
cause - the root cause of the problem

Spring Web Flow