klyn.net.ssl.SSLException.SSLException
constructor
public SSLException(message as String = "TLS error"):
Description
Creates an SSL exception.
import klyn.net.ssl

throw SSLException("TLS handshake failed")
Parameters
  • message Human-readable error message. ```klyn import klyn.net.ssl throw SSLException("TLS handshake failed") ```