comparison Framework/Orthanc/Core/Enumerations.cpp @ 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
62 62
63 case ErrorCode_ParameterOutOfRange: 63 case ErrorCode_ParameterOutOfRange:
64 return "Parameter out of range"; 64 return "Parameter out of range";
65 65
66 case ErrorCode_NotEnoughMemory: 66 case ErrorCode_NotEnoughMemory:
67 return "Not enough memory"; 67 return "The server hosting Orthanc is running out of memory";
68 68
69 case ErrorCode_BadParameterType: 69 case ErrorCode_BadParameterType:
70 return "Bad type for a parameter"; 70 return "Bad type for a parameter";
71 71
72 case ErrorCode_BadSequenceOfCalls: 72 case ErrorCode_BadSequenceOfCalls:
153 case ErrorCode_EmptyRequest: 153 case ErrorCode_EmptyRequest:
154 return "The request is empty"; 154 return "The request is empty";
155 155
156 case ErrorCode_NotAcceptable: 156 case ErrorCode_NotAcceptable:
157 return "Cannot send a response which is acceptable according to the Accept HTTP header"; 157 return "Cannot send a response which is acceptable according to the Accept HTTP header";
158
159 case ErrorCode_NullPointer:
160 return "Cannot handle a NULL pointer";
158 161
159 case ErrorCode_SQLiteNotOpened: 162 case ErrorCode_SQLiteNotOpened:
160 return "SQLite: The database is not opened"; 163 return "SQLite: The database is not opened";
161 164
162 case ErrorCode_SQLiteAlreadyOpened: 165 case ErrorCode_SQLiteAlreadyOpened: