ibis.rmi.server
Class ExportException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
ibis.ipl.IbisIOException
ibis.rmi.RemoteException
ibis.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 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 |
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 messagee
- the nested exception
The Ibis project