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

UnknownHostException

public class UnknownHostException extends RemoteException
An UnknownHostException is thrown if a java.net.UnknownHostException occurs while creating a connection to the remote host for a remote method call.
version
1.13, 12/19/03
since
JDK1.1

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

param
s the detail message
since
JDK1.1


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