Reaction Home

com.zynaptic.reaction
Class DeferredTerminationException

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.DeferredTerminationException
All Implemented Interfaces:
java.io.Serializable

public class DeferredTerminationException
extends ReactionRuntimeException

Indicates that a deferred callback chain is already terminated. This is a runtime exception which will be thrown when an attempt is made to terminate a deferred callback chain more than once. It usually indicates a programming error.

See Also:
Serialized Form

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

DeferredTerminationException

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