ConnectIOExceptionpublic 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. |
Fields Summary |
---|
private static final long | serialVersionUID |
Constructors Summary |
---|
public ConnectIOException(String s)Constructs a ConnectIOException with the specified
detail message.
super(s);
| public ConnectIOException(String s, Exception ex)Constructs a ConnectIOException with the specified
detail message and nested exception.
super(s, ex);
|
|