ComputerDictionaries.org      Computer terms spelled out...
Home -› AML -› RemoteException
Online dictionary
From all dictionaries     Only from this dictionary
 

Dictionaries by Category


High-Tech News

Definition Of:

RemoteException

AMLJDK Doc (JAVA)
- exception java.rmi..RemoteException 
public class RemoteException extends IOException 
Tree:java.lang.Object - java.lang.Throwable - java.lang.Exception - java.io.IOException - java.rmi.RemoteException
A RemoteException is the common superclass for a number of communication-related exceptions that may occur during the execution of a remote method call. Each method of a remote interface, an interface that extends java.rmi.Remote, must list RemoteException in its throws clause.
 
- Constructor for class java.rmi.RemoteException 
public RemoteException ()
Constructs a RemoteException with no specified detail message.Since: JDK1.1
 
- Constructor for class java.rmi.RemoteException 
public RemoteException (String Â s)
Constructs a RemoteException with the specified detail message.Parameters: s - the detail messageSince: JDK1.1
 
- Constructor for class java.rmi.RemoteException 
public RemoteException (String Â s, Throwable Â ex)
Constructs a RemoteException with the specified detail message and nested exception.Parameters: s - the detail message - the nested exceptionex - the nested exceptionSince: JDK1.1
See also: , , , ,