Reaction Home

com.zynaptic.reaction
Class ReactorNotRunningException

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

public class ReactorNotRunningException
extends ReactionRuntimeException

Indicates an attempt to access the reactor when it is not running. This exception is thrown if an attempt is made to access the reactor while it is in its stopped state. This is implemented as a runtime exception, since it implies a bug whereby a client of the reactor has not been correctly monitoring the reactor state.

See Also:
Serialized Form

Constructor Summary
ReactorNotRunningException(java.lang.String msg)
          Constructs a new reactor not 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

ReactorNotRunningException

public ReactorNotRunningException(java.lang.String msg)
Constructs a new reactor not 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