Exception raised for errors that are due to problems with the processed data like division by zero, numeric value out of range, etc.
| 32 | |
| 33 | |
| 34 | class DataError(DatabaseError): |
| 35 | """Exception raised for errors that are due to problems with the |
| 36 | processed data like division by zero, numeric value out of range, |
| 37 | etc.""" |
| 38 | |
| 39 | |
| 40 | class OperationalError(DatabaseError): |
nothing calls this directly
no outgoing calls
no test coverage detected