package java.rmi;

import java.io.IOException;

public class RemoteException extends IOException
{
 public Throwable detail;

 public RemoteException()
 {
 }
 
 public RemoteException(String)
 {
 }
 
 public RemoteException(String, Throwable)
 {
 }
 
 public String getMessage()
 {
  return null;
 }
 
}