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.
| 83 | |
| 84 | |
| 85 | class NotSupportedError(DatabaseError): |
| 86 | """Exception raised in case a method or database API was used |
| 87 | which is not supported by the database, e.g. requesting a |
| 88 | .rollback() on a connection that does not support transaction or |
| 89 | has transactions turned off.""" |
| 90 | |
| 91 | __module__ = "MySQLdb" |
no outgoing calls
no test coverage detected
searching dependent graphs…