klyn.cryptography.CryptoException.CryptoException
constructor
public CryptoException(message as String = ""):
Description
Creates a new cryptography exception.
import klyn.cryptography

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