comparison Core/Enumerations.h @ 3376:56ea9c476dba

new error code for Stone: BadGeometry
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 15 May 2019 16:30:24 +0200
parents ea299aca479b
children e280ced38a4c
comparison
equal deleted inserted replaced
3375:73d60d80a74a 3376:56ea9c476dba
176 ErrorCode_EmptyRequest = 33 /*!< The request is empty */, 176 ErrorCode_EmptyRequest = 33 /*!< The request is empty */,
177 ErrorCode_NotAcceptable = 34 /*!< Cannot send a response which is acceptable according to the Accept HTTP header */, 177 ErrorCode_NotAcceptable = 34 /*!< Cannot send a response which is acceptable according to the Accept HTTP header */,
178 ErrorCode_NullPointer = 35 /*!< Cannot handle a NULL pointer */, 178 ErrorCode_NullPointer = 35 /*!< Cannot handle a NULL pointer */,
179 ErrorCode_DatabaseUnavailable = 36 /*!< The database is currently not available (probably a transient situation) */, 179 ErrorCode_DatabaseUnavailable = 36 /*!< The database is currently not available (probably a transient situation) */,
180 ErrorCode_CanceledJob = 37 /*!< This job was canceled */, 180 ErrorCode_CanceledJob = 37 /*!< This job was canceled */,
181 ErrorCode_BadGeometry = 38 /*!< Geometry error encountered in Stone */,
181 ErrorCode_SQLiteNotOpened = 1000 /*!< SQLite: The database is not opened */, 182 ErrorCode_SQLiteNotOpened = 1000 /*!< SQLite: The database is not opened */,
182 ErrorCode_SQLiteAlreadyOpened = 1001 /*!< SQLite: Connection is already open */, 183 ErrorCode_SQLiteAlreadyOpened = 1001 /*!< SQLite: Connection is already open */,
183 ErrorCode_SQLiteCannotOpen = 1002 /*!< SQLite: Unable to open the database */, 184 ErrorCode_SQLiteCannotOpen = 1002 /*!< SQLite: Unable to open the database */,
184 ErrorCode_SQLiteStatementAlreadyUsed = 1003 /*!< SQLite: This cached statement is already being referred to */, 185 ErrorCode_SQLiteStatementAlreadyUsed = 1003 /*!< SQLite: This cached statement is already being referred to */,
185 ErrorCode_SQLiteExecute = 1004 /*!< SQLite: Cannot execute a command */, 186 ErrorCode_SQLiteExecute = 1004 /*!< SQLite: Cannot execute a command */,