comparison Core/Enumerations.h @ 2132:a43708636890

ErrorCode_NotEnoughMemory and ErrorCode_NullPointer
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 09 Nov 2016 10:19:53 +0100
parents 7a969f235adf
children 15ae532af70e
comparison
equal deleted inserted replaced
2131:bb199bccdc45 2132:a43708636890
81 ErrorCode_BadFont = 30 /*!< Badly formatted font file */, 81 ErrorCode_BadFont = 30 /*!< Badly formatted font file */,
82 ErrorCode_DatabasePlugin = 31 /*!< The plugin implementing a custom database back-end does not fulfill the proper interface */, 82 ErrorCode_DatabasePlugin = 31 /*!< The plugin implementing a custom database back-end does not fulfill the proper interface */,
83 ErrorCode_StorageAreaPlugin = 32 /*!< Error in the plugin implementing a custom storage area */, 83 ErrorCode_StorageAreaPlugin = 32 /*!< Error in the plugin implementing a custom storage area */,
84 ErrorCode_EmptyRequest = 33 /*!< The request is empty */, 84 ErrorCode_EmptyRequest = 33 /*!< The request is empty */,
85 ErrorCode_NotAcceptable = 34 /*!< Cannot send a response which is acceptable according to the Accept HTTP header */, 85 ErrorCode_NotAcceptable = 34 /*!< Cannot send a response which is acceptable according to the Accept HTTP header */,
86 ErrorCode_NotEnoughMemory = 35 /*!< The server hosting Orthanc is running out of memory */,
87 ErrorCode_NullPointer = 36 /*!< Cannot handle a NULL pointer */,
86 ErrorCode_SQLiteNotOpened = 1000 /*!< SQLite: The database is not opened */, 88 ErrorCode_SQLiteNotOpened = 1000 /*!< SQLite: The database is not opened */,
87 ErrorCode_SQLiteAlreadyOpened = 1001 /*!< SQLite: Connection is already open */, 89 ErrorCode_SQLiteAlreadyOpened = 1001 /*!< SQLite: Connection is already open */,
88 ErrorCode_SQLiteCannotOpen = 1002 /*!< SQLite: Unable to open the database */, 90 ErrorCode_SQLiteCannotOpen = 1002 /*!< SQLite: Unable to open the database */,
89 ErrorCode_SQLiteStatementAlreadyUsed = 1003 /*!< SQLite: This cached statement is already being referred to */, 91 ErrorCode_SQLiteStatementAlreadyUsed = 1003 /*!< SQLite: This cached statement is already being referred to */,
90 ErrorCode_SQLiteExecute = 1004 /*!< SQLite: Cannot execute a command */, 92 ErrorCode_SQLiteExecute = 1004 /*!< SQLite: Cannot execute a command */,