lime
Class IllegalReactionOperationException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--lime.LimeRuntimeException
                          |
                          +--lime.IllegalReactionOperationException
All Implemented Interfaces:
java.io.Serializable

public class IllegalReactionOperationException
extends LimeRuntimeException

Raised whenever a blocking operation (in or rd) or an operation accessing a non-local portion of the shared tuple space is invoked from within a ReactionListener object.

Version:
1.0 alpha
Author:
Gian Pietro Picco
See Also:
Serialized Form

Constructor Summary
IllegalReactionOperationException()
          Creates a new exception with no internal, lower-level exception.
IllegalReactionOperationException(java.lang.Exception e)
          Creates an exception that wraps an internal exception.
IllegalReactionOperationException(java.lang.Exception e, java.lang.String s)
          Creates an exception that wraps an internal exception.
IllegalReactionOperationException(java.lang.String s)
          Creates a new exception with no internal, lower-level exception.
 
Methods inherited from class lime.LimeRuntimeException
getInternal, hasInternal, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

IllegalReactionOperationException

public IllegalReactionOperationException()
Creates a new exception with no internal, lower-level exception.

IllegalReactionOperationException

public IllegalReactionOperationException(java.lang.String s)
Creates a new exception with no internal, lower-level exception.
Parameters:
s - an explanatory message for the exception.

IllegalReactionOperationException

public IllegalReactionOperationException(java.lang.Exception e)
Creates an exception that wraps an internal exception.
Parameters:
internal - the internal exception.

IllegalReactionOperationException

public IllegalReactionOperationException(java.lang.Exception e,
                                         java.lang.String s)
Creates an exception that wraps an internal exception.
Parameters:
internal - the internal exception.
s - an explanatory message for the exception.