comparison Core/Enumerations.h @ 2486:ad8f30fc28d1

new error code: DatabaseUnavailable
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 07 Mar 2018 15:46:47 +0100
parents 878b59270859
children be1dbb1dcdd6
comparison
equal deleted inserted replaced
2485:a5196a7d98c6 2486:ad8f30fc28d1
83 ErrorCode_DatabasePlugin = 31 /*!< The plugin implementing a custom database back-end does not fulfill the proper interface */, 83 ErrorCode_DatabasePlugin = 31 /*!< The plugin implementing a custom database back-end does not fulfill the proper interface */,
84 ErrorCode_StorageAreaPlugin = 32 /*!< Error in the plugin implementing a custom storage area */, 84 ErrorCode_StorageAreaPlugin = 32 /*!< Error in the plugin implementing a custom storage area */,
85 ErrorCode_EmptyRequest = 33 /*!< The request is empty */, 85 ErrorCode_EmptyRequest = 33 /*!< The request is empty */,
86 ErrorCode_NotAcceptable = 34 /*!< Cannot send a response which is acceptable according to the Accept HTTP header */, 86 ErrorCode_NotAcceptable = 34 /*!< Cannot send a response which is acceptable according to the Accept HTTP header */,
87 ErrorCode_NullPointer = 35 /*!< Cannot handle a NULL pointer */, 87 ErrorCode_NullPointer = 35 /*!< Cannot handle a NULL pointer */,
88 ErrorCode_DatabaseUnavailable = 36 /*!< The database is currently not available (probably a transient situation) */,
88 ErrorCode_SQLiteNotOpened = 1000 /*!< SQLite: The database is not opened */, 89 ErrorCode_SQLiteNotOpened = 1000 /*!< SQLite: The database is not opened */,
89 ErrorCode_SQLiteAlreadyOpened = 1001 /*!< SQLite: Connection is already open */, 90 ErrorCode_SQLiteAlreadyOpened = 1001 /*!< SQLite: Connection is already open */,
90 ErrorCode_SQLiteCannotOpen = 1002 /*!< SQLite: Unable to open the database */, 91 ErrorCode_SQLiteCannotOpen = 1002 /*!< SQLite: Unable to open the database */,
91 ErrorCode_SQLiteStatementAlreadyUsed = 1003 /*!< SQLite: This cached statement is already being referred to */, 92 ErrorCode_SQLiteStatementAlreadyUsed = 1003 /*!< SQLite: This cached statement is already being referred to */,
92 ErrorCode_SQLiteExecute = 1004 /*!< SQLite: Cannot execute a command */, 93 ErrorCode_SQLiteExecute = 1004 /*!< SQLite: Cannot execute a command */,