klyn.net.BindException.BindException
constructor
public BindException(message as String = "Bind failed"):
Description
Creates a bind exception.
import klyn.net

ex = BindException("Port unavailable")
print(ex.message)
Parameters
  • message Human-readable error message. ```klyn import klyn.net ex = BindException("Port unavailable") print(ex.message) ```