Top Description Fields Constructors
java.net

public Class ConnectException

extends SocketException
Class Inheritance

Signals that an error occurred while attempting to connect a socket to a remote address and port. Typically, the connection was refused remotely (e.g., no process is listening on the remote address/port).
Since
1.1

Field Summary

Modifier and TypeField and Description
private static final long

Constructor Summary

AccessConstructor and Description
public
ConnectException(String
the detail message
msg
)

Constructs a new ConnectException with the specified detail message as to why the connect error occurred.

public
ConnectException()

Construct a new ConnectException with no detailed message.

Field Detail

serialVersionUIDback to summary
private static final long serialVersionUID

Hides java.net.SocketException.serialVersionUID.

Annotations
@Serial

Constructor Detail

ConnectExceptionback to summary
public ConnectException(String msg)

Constructs a new ConnectException with the specified detail message as to why the connect error occurred. A detail message is a String that gives a specific description of this error.

Parameters
msg:String

the detail message

ConnectExceptionback to summary
public ConnectException()

Construct a new ConnectException with no detailed message.