comparison Framework/Orthanc/Core/Enumerations.h @ 12:9220cf4a63d5

sync
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 09 Nov 2016 14:14:34 +0100
parents 2dbe613f6c93
children
comparison
equal deleted inserted replaced
11:4b7e0244881f 12:9220cf4a63d5
50 ErrorCode_InternalError = -1 /*!< Internal error */, 50 ErrorCode_InternalError = -1 /*!< Internal error */,
51 ErrorCode_Success = 0 /*!< Success */, 51 ErrorCode_Success = 0 /*!< Success */,
52 ErrorCode_Plugin = 1 /*!< Error encountered within the plugin engine */, 52 ErrorCode_Plugin = 1 /*!< Error encountered within the plugin engine */,
53 ErrorCode_NotImplemented = 2 /*!< Not implemented yet */, 53 ErrorCode_NotImplemented = 2 /*!< Not implemented yet */,
54 ErrorCode_ParameterOutOfRange = 3 /*!< Parameter out of range */, 54 ErrorCode_ParameterOutOfRange = 3 /*!< Parameter out of range */,
55 ErrorCode_NotEnoughMemory = 4 /*!< Not enough memory */, 55 ErrorCode_NotEnoughMemory = 4 /*!< The server hosting Orthanc is running out of memory */,
56 ErrorCode_BadParameterType = 5 /*!< Bad type for a parameter */, 56 ErrorCode_BadParameterType = 5 /*!< Bad type for a parameter */,
57 ErrorCode_BadSequenceOfCalls = 6 /*!< Bad sequence of calls */, 57 ErrorCode_BadSequenceOfCalls = 6 /*!< Bad sequence of calls */,
58 ErrorCode_InexistentItem = 7 /*!< Accessing an inexistent item */, 58 ErrorCode_InexistentItem = 7 /*!< Accessing an inexistent item */,
59 ErrorCode_BadRequest = 8 /*!< Bad request */, 59 ErrorCode_BadRequest = 8 /*!< Bad request */,
60 ErrorCode_NetworkProtocol = 9 /*!< Error in the network protocol */, 60 ErrorCode_NetworkProtocol = 9 /*!< Error in the network protocol */,
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_NullPointer = 35 /*!< Cannot handle a NULL pointer */,
86 ErrorCode_SQLiteNotOpened = 1000 /*!< SQLite: The database is not opened */, 87 ErrorCode_SQLiteNotOpened = 1000 /*!< SQLite: The database is not opened */,
87 ErrorCode_SQLiteAlreadyOpened = 1001 /*!< SQLite: Connection is already open */, 88 ErrorCode_SQLiteAlreadyOpened = 1001 /*!< SQLite: Connection is already open */,
88 ErrorCode_SQLiteCannotOpen = 1002 /*!< SQLite: Unable to open the database */, 89 ErrorCode_SQLiteCannotOpen = 1002 /*!< SQLite: Unable to open the database */,
89 ErrorCode_SQLiteStatementAlreadyUsed = 1003 /*!< SQLite: This cached statement is already being referred to */, 90 ErrorCode_SQLiteStatementAlreadyUsed = 1003 /*!< SQLite: This cached statement is already being referred to */,
90 ErrorCode_SQLiteExecute = 1004 /*!< SQLite: Cannot execute a command */, 91 ErrorCode_SQLiteExecute = 1004 /*!< SQLite: Cannot execute a command */,