FileDocCategorySizeDatePackage
SkeletonNotFoundException.javaAPI DocJava SE 6 API1458Tue Jun 10 00:25:44 BST 2008java.rmi.server

SkeletonNotFoundException

public class SkeletonNotFoundException extends RemoteException
A SkeletonNotFoundException is thrown if the Skeleton corresponding to the remote object being exported is not found. Skeletons are no longer required, so this exception is never thrown.
version
1.18, 07/17/06
since
JDK1.1
deprecated
no replacement. Skeletons are no longer required for remote method calls in the Java 2 platform v1.2 and greater.

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

param
s the detail message.
since
JDK1.1


                        
       
	super(s);
    
public SkeletonNotFoundException(String s, Exception ex)
Constructs a SkeletonNotFoundException 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