lime
Class TupleSpaceEngineException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--lime.LimeException
                    |
                    +--lime.TupleSpaceEngineException
All Implemented Interfaces:
java.io.Serializable

public class TupleSpaceEngineException
extends LimeException

Raised when a problem occurs in the underlying tuple space engine.

Version:
1.0 alpha
Author:
Amy L. Murphy, Gian Pietro Picco
See Also:
Serialized Form

Constructor Summary
TupleSpaceEngineException()
          Creates a new exception with no internal, lower-level exception.
TupleSpaceEngineException(java.lang.Exception e)
          Creates an exception that wraps an internal exception.
TupleSpaceEngineException(java.lang.Exception e, java.lang.String s)
          Creates an exception that wraps an internal exception.
TupleSpaceEngineException(java.lang.String s)
          Creates a new exception with no internal, lower-level exception.
 
Methods inherited from class lime.LimeException
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

TupleSpaceEngineException

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

TupleSpaceEngineException

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

TupleSpaceEngineException

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

TupleSpaceEngineException

public TupleSpaceEngineException(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.