Package com.j_spaces.core
Class CreateException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.j_spaces.core.CreateException
- All Implemented Interfaces:
Serializable
A CreateException is thrown if an attempt to create a new space fails.
- Version:
- 1.0
- Author:
- Igor Goldenberg
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs aCreateExceptionwithnullas its error detail message.Constructs aCreateExceptionwith the specified detail message.CreateException(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
-
CreateException
public CreateException()Constructs aCreateExceptionwithnullas its error detail message. -
CreateException
Constructs aCreateExceptionwith the specified detail message. The stringscan be retrieved later by themethod of classThrowable.getMessage()java.lang.Throwable.- Parameters:
s- the detail message.
-
CreateException
-