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

ConnectException

public class ConnectException extends RemoteException
A ConnectException is thrown if a connection is refused to the remote host for a remote method call.
version
1.13, 12/19/03
author
Ann Wollrath
since
JDK1.1

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

param
s the detail message
since
JDK1.1


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