ConnectExceptionpublic class ConnectException extends RemoteException A ConnectException is thrown if a connection is refused
to the remote host for a remote method call. |
Fields Summary |
---|
private static final long | serialVersionUID |
Constructors Summary |
---|
public ConnectException(String s)Constructs a ConnectException with the specified
detail message.
super(s);
| public ConnectException(String s, Exception ex)Constructs a ConnectException with the specified
detail message and nested exception.
super(s, ex);
|
|