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.
| 58 | |
| 59 | |
| 60 | class ProgrammingError(DatabaseError): |
| 61 | """Exception raised for programming errors, e.g. table not found |
| 62 | or already exists, syntax error in the SQL statement, wrong number |
| 63 | of parameters specified, etc.""" |
| 64 | |
| 65 | |
| 66 | class NotSupportedError(DatabaseError): |
no outgoing calls
no test coverage detected