Reaction Home

com.zynaptic.reaction
Class DeferredTimedOutException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by com.zynaptic.reaction.ReactionDefaultException
              extended by com.zynaptic.reaction.DeferredTimedOutException
All Implemented Interfaces:
java.io.Serializable

public class DeferredTimedOutException
extends ReactionDefaultException

Indicates that a deferred event has timed out. This exception is thrown when the timeout on a deferred event object expires before the callback or errback method has been called.

See Also:
Serialized Form

Constructor Summary
DeferredTimedOutException(java.lang.String msg)
          Constructs a new deferred timed out 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
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

DeferredTimedOutException

public DeferredTimedOutException(java.lang.String msg)
Constructs a new deferred timed out exception. The only supported constructor for this class of exception is the standard string message constructor.

Parameters:
msg - This is the message string which is used to describe the error condition.

Reaction Home