Package com.j_spaces.core.client
Class FinderException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.j_spaces.core.client.FinderException
- All Implemented Interfaces:
Serializable
A FinderException is thrown if an attempt to find space or container fails.
- Version:
- 2.5
- Author:
- Igor Goldenberg
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs aFinderExceptionwithnullas its error detail message.FinderException(String message) Constructs aFinderExceptionwith the specified detail message.FinderException(String message, Throwable cause) Constructs a new FinderException with the specified detail message and cause.FinderException(Throwable cause) Constructs a new FinderException with the specified 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
-
FinderException
public FinderException()Constructs aFinderExceptionwithnullas its error detail message. -
FinderException
Constructs aFinderExceptionwith the specified detail message. The stringscan be retrieved later by themethod of classThrowable.getMessage()java.lang.Throwable.- Parameters:
message- the detail message.
-
FinderException
Constructs a new FinderException with the specified detail message and cause.- Parameters:
message- the detail message (which is saved for later retrieval by theThrowable.getMessage()method).cause- the cause (which is saved for later retrieval by theThrowable.getCause()method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)- Since:
- 4.0
-
FinderException
Constructs a new FinderException with the specified cause.- Parameters:
cause- the cause (which is saved for later retrieval by theThrowable.getCause()method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)- Since:
- 6.5
-