SocketException class

Exception thrown when a socket operation fails.

Implemented types

Constructors

SocketException(String message, {OSError? osError, InternetAddress? address, int? port})
Creates a SocketException with the provided values.
const
SocketException.closed()
Creates an exception reporting that a socket was used after it was closed.
const

Properties

address → InternetAddress?
The address of the socket giving rise to the exception.
final
hashCode → int
The hash code for this object.
read-onlyinherited
message → String
Description of the error.
final
osError → OSError?
The underlying OS error.
final
port → int?
The port of the socket giving rise to the exception.
final
runtimeType → Type
A representation of the runtime type of the object.
read-onlyinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() → String
A string representation of this object.
override

Operators

operator ==(Object other) → bool
The equality operator.
inherited