Package com.j_spaces.core
Class DestroyedFailedException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.j_spaces.core.DestroyedFailedException
- All Implemented Interfaces:
Serializable
A DestroyedFailedException is thrown if an attempt to destroy an existing space fails.
- Version:
- 1.0
- Author:
- Igor Goldenberg
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs aDestroyedFailedExceptionwithnullas its error detail message.Constructs aDestroyedFailedExceptionwith the specified detail message.DestroyedFailedException(String message, Throwable cause) -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
DestroyedFailedException
public DestroyedFailedException()Constructs aDestroyedFailedExceptionwithnullas its error detail message. -
DestroyedFailedException
Constructs aDestroyedFailedExceptionwith the specified detail message. The stringscan be retrieved later by themethod of classThrowable.getMessage()java.lang.Throwable.- Parameters:
s- the detail message.
-
DestroyedFailedException
-