Reaction Home

com.zynaptic.reaction
Class ReactionRuntimeException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by com.zynaptic.reaction.ReactionRuntimeException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
DeferredTerminationException, DeferredTriggeredException, ReactorNotRunningException, RestrictedCapabilityException, SignalContextException, ThreadableRunningException

public class ReactionRuntimeException
extends java.lang.RuntimeException

Defines the default runtime exception class for the Reaction framework. This is the root runtime exception class for the Reaction framework, from which all other runtime exceptions are derived.

See Also:
Serialized Form

Constructor Summary
ReactionRuntimeException(java.lang.String msg)
          Constructs a new default runtime 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

ReactionRuntimeException

public ReactionRuntimeException(java.lang.String msg)
Constructs a new default runtime 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