Searched refs:ADD_EXCEPTION (Results 1 – 1 of 1) sorted by relevance
/third_party/python/Modules/_sqlite/ |
D | module.c | 349 #define ADD_EXCEPTION(module, name, exc, base) \ macro 396 ADD_EXCEPTION(module, "Error", pysqlite_Error, PyExc_Exception); in PyInit__sqlite3() 397 ADD_EXCEPTION(module, "Warning", pysqlite_Warning, PyExc_Exception); in PyInit__sqlite3() 400 ADD_EXCEPTION(module, "InterfaceError", pysqlite_InterfaceError, pysqlite_Error); in PyInit__sqlite3() 401 ADD_EXCEPTION(module, "DatabaseError", pysqlite_DatabaseError, pysqlite_Error); in PyInit__sqlite3() 404 ADD_EXCEPTION(module, "InternalError", pysqlite_InternalError, pysqlite_DatabaseError); in PyInit__sqlite3() 405 ADD_EXCEPTION(module, "OperationalError", pysqlite_OperationalError, pysqlite_DatabaseError); in PyInit__sqlite3() 406 ADD_EXCEPTION(module, "ProgrammingError", pysqlite_ProgrammingError, pysqlite_DatabaseError); in PyInit__sqlite3() 407 ADD_EXCEPTION(module, "IntegrityError", pysqlite_IntegrityError, pysqlite_DatabaseError); in PyInit__sqlite3() 408 ADD_EXCEPTION(module, "DataError", pysqlite_DataError, pysqlite_DatabaseError); in PyInit__sqlite3() [all …]
|