comparison OrthancServer/main.cpp @ 2132:a43708636890

ErrorCode_NotEnoughMemory and ErrorCode_NullPointer
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 09 Nov 2016 10:19:53 +0100
parents acb4cd4af771
children 15ae532af70e
comparison
equal deleted inserted replaced
2131:bb199bccdc45 2132:a43708636890
533 PrintErrorCode(ErrorCode_BadFont, "Badly formatted font file"); 533 PrintErrorCode(ErrorCode_BadFont, "Badly formatted font file");
534 PrintErrorCode(ErrorCode_DatabasePlugin, "The plugin implementing a custom database back-end does not fulfill the proper interface"); 534 PrintErrorCode(ErrorCode_DatabasePlugin, "The plugin implementing a custom database back-end does not fulfill the proper interface");
535 PrintErrorCode(ErrorCode_StorageAreaPlugin, "Error in the plugin implementing a custom storage area"); 535 PrintErrorCode(ErrorCode_StorageAreaPlugin, "Error in the plugin implementing a custom storage area");
536 PrintErrorCode(ErrorCode_EmptyRequest, "The request is empty"); 536 PrintErrorCode(ErrorCode_EmptyRequest, "The request is empty");
537 PrintErrorCode(ErrorCode_NotAcceptable, "Cannot send a response which is acceptable according to the Accept HTTP header"); 537 PrintErrorCode(ErrorCode_NotAcceptable, "Cannot send a response which is acceptable according to the Accept HTTP header");
538 PrintErrorCode(ErrorCode_NotEnoughMemory, "The server hosting Orthanc is running out of memory");
539 PrintErrorCode(ErrorCode_NullPointer, "Cannot handle a NULL pointer");
538 PrintErrorCode(ErrorCode_SQLiteNotOpened, "SQLite: The database is not opened"); 540 PrintErrorCode(ErrorCode_SQLiteNotOpened, "SQLite: The database is not opened");
539 PrintErrorCode(ErrorCode_SQLiteAlreadyOpened, "SQLite: Connection is already open"); 541 PrintErrorCode(ErrorCode_SQLiteAlreadyOpened, "SQLite: Connection is already open");
540 PrintErrorCode(ErrorCode_SQLiteCannotOpen, "SQLite: Unable to open the database"); 542 PrintErrorCode(ErrorCode_SQLiteCannotOpen, "SQLite: Unable to open the database");
541 PrintErrorCode(ErrorCode_SQLiteStatementAlreadyUsed, "SQLite: This cached statement is already being referred to"); 543 PrintErrorCode(ErrorCode_SQLiteStatementAlreadyUsed, "SQLite: This cached statement is already being referred to");
542 PrintErrorCode(ErrorCode_SQLiteExecute, "SQLite: Cannot execute a command"); 544 PrintErrorCode(ErrorCode_SQLiteExecute, "SQLite: Cannot execute a command");