Reaction Home

com.zynaptic.reaction
Class ThreadableRunningException

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

public class ThreadableRunningException
extends ReactionRuntimeException

Indicates that a threadable object is already executing. This runtime exception is thrown when an attempt is made to schedule a threadable object for execution while it is already being processed by the reactor. This constitutes a programming error.

See Also:
Serialized Form

Constructor Summary
ThreadableRunningException(java.lang.String msg)
          Constructs a new threadable running 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

ThreadableRunningException

public ThreadableRunningException(java.lang.String msg)
Constructs a new threadable running 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