klyn.databases.sql.SQLFeatureNotSupportedException.SQLFeatureNotSupportedException
constructor
public SQLFeatureNotSupportedException(message as String = "SQL feature not supported"):
Description
Creates a feature-not-supported exception.
import klyn.databases.sql

ex = SQLFeatureNotSupportedException("No driver is registered")
print(ex.message)
Parameters
  • message Human-readable explanation. ```klyn import klyn.databases.sql ex = SQLFeatureNotSupportedException("No driver is registered") print(ex.message) ```