Exception raised when the database encounters an internal error, e.g. the cursor is not valid anymore, the transaction is out of sync, etc.
| 52 | |
| 53 | |
| 54 | class InternalError(DatabaseError): |
| 55 | """Exception raised when the database encounters an internal |
| 56 | error, e.g. the cursor is not valid anymore, the transaction is |
| 57 | out of sync, etc.""" |
| 58 | |
| 59 | |
| 60 | class ProgrammingError(DatabaseError): |
nothing calls this directly
no outgoing calls
no test coverage detected