ibis.rmi.server
Class ExportException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byjava.io.IOException
              extended byibis.ipl.IbisIOException
                  extended byibis.rmi.RemoteException
                      extended byibis.rmi.server.ExportException
All Implemented Interfaces:
java.io.Serializable

public class ExportException
extends RemoteException

An ExportException is thrown if exporting a remote object fails for some reason. An object that extends UnicastRemoteObject is automatically exported. Any Remote object can be exported by using the UnicastRemoteObject.exportObject(ibis.rmi.Remote) method.

See Also:
Serialized Form

Constructor Summary
ExportException(java.lang.String s)
          Constructs an ExportException with the specified detail message.
ExportException(java.lang.String s, java.lang.Exception e)
          Constructs an ExportException with the specified detail message and nested exception.
 
Methods inherited from class ibis.ipl.IbisIOException
getCause, getMessage, initCause, printStackTrace
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ExportException

public ExportException(java.lang.String s)
Constructs an ExportException with the specified detail message.

Parameters:
s - the detail message

ExportException

public ExportException(java.lang.String s,
                       java.lang.Exception e)
Constructs an ExportException with the specified detail message and nested exception.

Parameters:
s - the detail message
e - the nested exception


The Ibis project