| 
 | JSR 177 | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectjava.lang.Throwable
java.lang.Exception
java.io.IOException
java.rmi.RemoteException
public class 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.
| Field Summary | |
|---|---|
|  java.lang.Throwable | detailNested exception to hold wrapped remote exception. | 
| Constructor Summary | |
|---|---|
| RemoteException()Constructs a RemoteExceptionwith no specified
 detail message. | |
| RemoteException(java.lang.String s)Constructs a RemoteExceptionwith the specified
 detail message. | |
| RemoteException(java.lang.String s,
                java.lang.Throwable ex)Constructs a RemoteExceptionwith the specified
 detail message and nested exception. | |
| Method Summary | |
|---|---|
|  java.lang.String | getMessage()Returns the detail message, including the message from the nested exception if there is one. | 
| Methods inherited from class java.lang.Throwable | 
|---|
| fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString | 
| Methods inherited from class java.lang.Object | 
|---|
| clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait | 
| Field Detail | 
|---|
public java.lang.Throwable detail
| Constructor Detail | 
|---|
public RemoteException()
RemoteException with no specified
 detail message.
public RemoteException(java.lang.String s)
RemoteException with the specified
 detail message.
s - the detail message
public RemoteException(java.lang.String s,
                       java.lang.Throwable ex)
RemoteException with the specified
 detail message and nested exception.
s - the detail messageex - the nested exception| Method Detail | 
|---|
public java.lang.String getMessage()
getMessage in class java.lang.Throwable| 
 | JSR 177 | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||