Java in a Nutshell Online Quick Reference for Java 1.1
Availability: JDK 1.1
public class RemoteException extends IOException {
   // Public Constructors
      public RemoteException();
      public RemoteException(String s);
      public RemoteException(String s, Throwable ex);
   // Public Instance Variables
      public Throwable detail;
   // Public Instance Methods
      public String getMessage();  // Overrides Throwable.getMessage()
}