public class

ExportException

extends RemoteException
java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ java.io.IOException
         ↳ java.rmi.RemoteException
           ↳ java.rmi.server.ExportException
Known Direct Subclasses

Class Overview

An ExportException is a RemoteException thrown if an attempt to export a remote object fails. A remote object is exported via the constructors and exportObject methods of java.rmi.server.UnicastRemoteObject and java.rmi.activation.Activatable.

Summary

[Expand]
Inherited Fields
From class java.rmi.RemoteException
Public Constructors
ExportException(String s)
Constructs an ExportException with the specified detail message.
ExportException(String s, Exception ex)
Constructs an ExportException with the specified detail message and nested exception.
[Expand]
Inherited Methods
From class java.rmi.RemoteException
From class java.lang.Throwable
From class java.lang.Object

Public Constructors

public ExportException (String s)

Constructs an ExportException with the specified detail message.

Parameters
s the detail message

public ExportException (String s, Exception ex)

Constructs an ExportException with the specified detail message and nested exception.

Parameters
s the detail message
ex the nested exception