comparison Core/Enumerations.cpp @ 2133:15ae532af70e

fix
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 09 Nov 2016 10:21:37 +0100
parents a43708636890
children 9b373b7d6713
comparison
equal deleted inserted replaced
2132:a43708636890 2133:15ae532af70e
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_NotEnoughMemory:
160 return "The server hosting Orthanc is running out of memory";
161 158
162 case ErrorCode_NullPointer: 159 case ErrorCode_NullPointer:
163 return "Cannot handle a NULL pointer"; 160 return "Cannot handle a NULL pointer";
164 161
165 case ErrorCode_SQLiteNotOpened: 162 case ErrorCode_SQLiteNotOpened: