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.
| 64 | |
| 65 | |
| 66 | class 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 | |
| 73 | error_map = {} |
nothing calls this directly
no outgoing calls
no test coverage detected