Exception raised for programming errors, e.g. table not found or already exists, syntax error in the SQL statement, wrong number of parameters specified, etc.
| 75 | |
| 76 | |
| 77 | class ProgrammingError(DatabaseError): |
| 78 | """Exception raised for programming errors, e.g. table not found |
| 79 | or already exists, syntax error in the SQL statement, wrong number |
| 80 | of parameters specified, etc.""" |
| 81 | |
| 82 | __module__ = "MySQLdb" |
| 83 | |
| 84 | |
| 85 | class NotSupportedError(DatabaseError): |
no outgoing calls
no test coverage detected
searching dependent graphs…