Reaction Home

com.zynaptic.reaction
Class SignalContextException

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

public class SignalContextException
extends ReactionRuntimeException

Indicates an attempt to make an invalid call from a signal callback. This exception is thrown if an attempt is made to generate a signal event or modify the list of signal subscribers from the context of a signal callback routine.

See Also:
Serialized Form

Constructor Summary
SignalContextException(java.lang.String msg)
          Constructs a new signal call context 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

SignalContextException

public SignalContextException(java.lang.String msg)
Constructs a new signal call context 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