Package com.j_spaces.core
Class NoSuchNameException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.j_spaces.core.NoSuchNameException
- All Implemented Interfaces:
Serializable
A NoSuchNameException is thrown when a lookup of an object by name is performed and the name is
not found.
- Version:
- 1.0
- Author:
- Igor Goldenberg
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs aNoSuchNameExceptionwithnullas its error detail message.Constructs aNoSuchNameExceptionwith the specified detail message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
NoSuchNameException
public NoSuchNameException()Constructs aNoSuchNameExceptionwithnullas its error detail message. -
NoSuchNameException
Constructs aNoSuchNameExceptionwith the specified detail message. The stringscan be retrieved later by themethod of classThrowable.getMessage()java.lang.Throwable.- Parameters:
s- the detail message.
-