Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
java.rmi.RemoteException

Uses of RemoteException in java.rmi
 

Subclasses of RemoteException in java.rmi
 class AccessException
          Thrown to indicate that the caller does not have permission to access certain data, such as bind in an ActivationSystem.
 class ConnectException
          Thrown if a connection is refused for a remote call.
 class ConnectIOException
          Wraps an I/O Exception thrown while connecting for a remote call.
 class MarshalException
          Thrown if an exception occurs while marshalling data to send in a remote call.
 class NoSuchObjectException
          Thrown on an attempt to invoke a call on an object that no longer exists in the remote Virtual Machine.
 class ServerError
          Wraps any error thrown while processing the server of a remote call.
 class ServerException
          Wraps any exception thrown while processing the server of a remote call.
 class ServerRuntimeException
          Deprecated. no replacement
 class StubNotFoundException
          Thrown if a valid stub class is not found for an object when it is exported.
 class UnexpectedException
          Thrown if an unexpected checked exception was received in a remote procedure call.
 class UnknownHostException
          Thrown if a java.net.UnknownHostException occurs during a remote procedure call.
 class UnmarshalException
          Thrown if an exception occurs while unmarshalling parameters or results of a remote method call.
 

Methods in java.rmi that throw RemoteException
static Remote Naming.lookup(java.lang.String name)
          Looks for the remote object that is associated with the named service.
static void Naming.bind(java.lang.String name, Remote obj)
          Try to bind the given object to the given service name.
static void Naming.unbind(java.lang.String name)
          Remove a binding for a given service name.
static void Naming.rebind(java.lang.String name, Remote obj)
          Forces the binding between the given Remote-object and the given service name, even if there was already an object bound to this name.
static java.lang.String[] Naming.list(java.lang.String name)
          Lists all services at the named registry.
private static java.rmi.registry.Registry Naming.getRegistry(java.net.URL u)