NotBoundExceptionpublic class NotBoundException extends Exception A NotBoundException is thrown if an attempt
is made to lookup or unbind in the registry a name that has
no associated binding. |
Fields Summary |
---|
private static final long | serialVersionUID |
Constructors Summary |
---|
public NotBoundException()Constructs a NotBoundException with no
specified detail message.
super();
| public NotBoundException(String s)Constructs a NotBoundException with the specified
detail message.
super(s);
|
|