com.j_spaces.core
Class DestroyedFailedException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by com.j_spaces.core.DestroyedFailedException
All Implemented Interfaces:
Serializable

public class DestroyedFailedException
extends Exception

A DestroyedFailedException is thrown if an attempt to destroy an existing space fails.

See Also:
Serialized Form

Constructor Summary
DestroyedFailedException()
          Constructs a DestroyedFailedException with null as its error detail message.
DestroyedFailedException(String s)
          Constructs a DestroyedFailedException with the specified detail message.
DestroyedFailedException(String message, Throwable cause)
           
 
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

DestroyedFailedException

public DestroyedFailedException()
Constructs a DestroyedFailedException with null as its error detail message.


DestroyedFailedException

public DestroyedFailedException(String s)
Constructs a DestroyedFailedException with the specified detail message. The string s can be retrieved later by the Throwable.getMessage() method of class java.lang.Throwable.

Parameters:
s - the detail message.

DestroyedFailedException

public DestroyedFailedException(String message,
                                Throwable cause)