Reaction Home

com.zynaptic.reaction
Class DeferredTriggeredException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by com.zynaptic.reaction.ReactionRuntimeException
                  extended by com.zynaptic.reaction.DeferredTriggeredException
All Implemented Interfaces:
java.io.Serializable

public class DeferredTriggeredException
extends ReactionRuntimeException

Indicates an invalid attempt to trigger a deferred event object. This exception is thrown when an attempt is made to trigger a deferred event object more than once. It is only legitimate to make a single call to either the callback or errback method on a given deferred event object. Anything else constitutes a programming error and is indicated by this exception.

See Also:
Serialized Form

Constructor Summary
DeferredTriggeredException(java.lang.String msg)
          Constructs a new deferred triggered 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

DeferredTriggeredException

public DeferredTriggeredException(java.lang.String msg)
Constructs a new deferred triggered 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