MCPcopy Create free account
hub / github.com/PyMySQL/PyMySQL / NotSupportedError

Class NotSupportedError

pymysql/err.py:66–70  ·  view source on GitHub ↗

Exception raised in case a method or database API was used which is not supported by the database, e.g. requesting a .rollback() on a connection that does not support transaction or has transactions turned off.

Source from the content-addressed store, hash-verified

64
65
66class NotSupportedError(DatabaseError):
67 """Exception raised in case a method or database API was used
68 which is not supported by the database, e.g. requesting a
69 .rollback() on a connection that does not support transaction or
70 has transactions turned off."""
71
72
73error_map = {}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected