klyn.cryptography.CryptoException.CryptoException
constructor
public CryptoException(message as String = ""):
Description

Creates a new cryptography exception.

Parameters
  • message Human-readable failure description. ```klyn import klyn.cryptography ex = CryptoException("Unsupported algorithm") print(ex.message) ```