FileDocCategorySizeDatePackage
ExportException.javaAPI DocJava SE 5 API1436Fri Aug 26 14:57:12 BST 2005java.rmi.server

ExportException

public class ExportException extends RemoteException
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.
version
1.12, 12/19/03
author
Ann Wollrath
since
JDK1.1
see
java.rmi.server.UnicastRemoteObject
see
java.rmi.activation.Activatable

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public ExportException(String s)
Constructs an ExportException with the specified detail message.

param
s the detail message
since
JDK1.1


                        
       
	super(s);
    
public ExportException(String s, Exception ex)
Constructs an ExportException with the specified detail message and nested exception.

param
s the detail message
param
ex the nested exception
since
JDK1.1

	super(s, ex);
    
Methods Summary