| 
JSR-62 (Final) | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
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.
| Field Summary | |
 Throwable | 
detail
Nested Exception to hold wrapped remote exception.  | 
| Constructor Summary | |
RemoteException()
Constructs a RemoteException with no specified
 detail message. | 
|
RemoteException(String s)
Constructs a RemoteException with the specified
 detail message. | 
|
RemoteException(String s,
                Throwable ex)
Constructs a RemoteException with the specified
 detail message and nested exception. | 
|
| Method Summary | |
 String | 
getMessage()
Returns the detail message, including the message from the nested exception if there is one.  | 
 void | 
printStackTrace()
Prints the composite message to System.err. | 
 void | 
printStackTrace(PrintStream ps)
Prints the composite message and the embedded stack trace to the specified stream ps. | 
 void | 
printStackTrace(PrintWriter pw)
Prints the composite message and the embedded stack trace to the specified print writer pw. | 
| Methods inherited from class java.lang.Throwable | 
fillInStackTrace, getLocalizedMessage, toString | 
| Methods inherited from class java.lang.Object | 
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait | 
| Field Detail | 
public Throwable detail
| Constructor Detail | 
public RemoteException()
RemoteException with no specified
 detail message.
public RemoteException(String s)
RemoteException with the specified
 detail message.
s - the detail message
public RemoteException(String s,
                       Throwable ex)
RemoteException with the specified
 detail message and nested exception.
s - the detail messageex - the nested exception| Method Detail | 
public String getMessage()
getMessage in class ThrowableThrowable 
          object if it was created with an 
          error message string; or null if it was 
          created with no error message.public void printStackTrace(PrintStream ps)
ps.
printStackTrace in class Throwableps - the print streampublic void printStackTrace()
System.err.
printStackTrace in class ThrowableSystem.errpublic void printStackTrace(PrintWriter pw)
pw.
printStackTrace in class Throwablepw - the print writer
  | 
JSR-62 (Final) | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||