Exception raised for errors that are related to the database's operation and not necessarily under the control of the programmer, e.g. an unexpected disconnect occurs, the data source name is not found, a transaction could not be processed, a memory allocation error occurred during p
| 38 | |
| 39 | |
| 40 | class OperationalError(DatabaseError): |
| 41 | """Exception raised for errors that are related to the database's |
| 42 | operation and not necessarily under the control of the programmer, |
| 43 | e.g. an unexpected disconnect occurs, the data source name is not |
| 44 | found, a transaction could not be processed, a memory allocation |
| 45 | error occurred during processing, etc.""" |
| 46 | |
| 47 | |
| 48 | class IntegrityError(DatabaseError): |
no outgoing calls
no test coverage detected
searching dependent graphs…