CONTENTS | PREV | NEXT Java Remote Method Invocation
A.4 Naming Exceptions
The following table lists the exceptions specified in methods of the java.rmi.Naming class and the java.rmi.registry.Registry interface.
Exception
Context
java.rmi.AccessException
Operation disallowed. The registry restricts bind, rebind, and unbind to the same host. The lookup operation can originate from any host.
java.rmi.AlreadyBoundException
Attempt to bind a name that is already bound.
java.rmi.NotBoundException
Attempt to look up a name that is not bound.
java.rmi.UnknownHostException
Attempt to contact a registry on an unknown host.
CONTENTS | PREV | NEXT