FileDocCategorySizeDatePackage
ConnectIOException.javaAPI DocJava SE 5 API1190Fri Aug 26 14:57:10 BST 2005java.rmi

ConnectIOException

public class ConnectIOException extends RemoteException
A ConnectIOException is thrown if an IOException occurs while making a connection to the remote host for a remote method call.
version
1.12, 12/19/03
author
Ann Wollrath
since
JDK1.1

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

param
s the detail message
since
JDK1.1


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