Exception raised when the relational integrity of the database is affected, e.g. a foreign key check fails, duplicate key, etc.
| 46 | |
| 47 | |
| 48 | class IntegrityError(DatabaseError): |
| 49 | """Exception raised when the relational integrity of the database |
| 50 | is affected, e.g. a foreign key check fails, duplicate key, |
| 51 | etc.""" |
| 52 | |
| 53 | |
| 54 | class InternalError(DatabaseError): |
nothing calls this directly
no outgoing calls
no test coverage detected