FileDocCategorySizeDatePackage
SocketSecurityException.javaAPI DocJava SE 5 API1121Fri Aug 26 14:57:14 BST 2005java.rmi.server

SocketSecurityException

public class SocketSecurityException extends ExportException
An obsolete subclass of {@link ExportException}.
version
1.13, 12/19/03
author
Ann Wollrath
since
JDK1.1

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

param
s the detail message.
since
JDK1.1


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