| ComputerDictionaries.org Computer terms spelled out... |
|
|
|
|
Dictionaries by Category
High-Tech News
|
| Definition Of: |
RemoteException
- 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 message Since: 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 exception Since: JDK1.1
|
| |
|