klyn.net.SocketException.SocketException
constructor
public SocketException(message as String = "Socket error"):
Description
Creates a socket exception.
import klyn.net

ex = SocketException("Broken pipe")
print(ex.message)
Parameters
  • message Human-readable error message. ```klyn import klyn.net ex = SocketException("Broken pipe") print(ex.message) ```