comparison OrthancServer/main.cpp @ 2133:15ae532af70e

fix
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 09 Nov 2016 10:21:37 +0100
parents a43708636890
children dd609a99d39a
comparison
equal deleted inserted replaced
2132:a43708636890 2133:15ae532af70e
502 PrintErrorCode(ErrorCode_InternalError, "Internal error"); 502 PrintErrorCode(ErrorCode_InternalError, "Internal error");
503 PrintErrorCode(ErrorCode_Success, "Success"); 503 PrintErrorCode(ErrorCode_Success, "Success");
504 PrintErrorCode(ErrorCode_Plugin, "Error encountered within the plugin engine"); 504 PrintErrorCode(ErrorCode_Plugin, "Error encountered within the plugin engine");
505 PrintErrorCode(ErrorCode_NotImplemented, "Not implemented yet"); 505 PrintErrorCode(ErrorCode_NotImplemented, "Not implemented yet");
506 PrintErrorCode(ErrorCode_ParameterOutOfRange, "Parameter out of range"); 506 PrintErrorCode(ErrorCode_ParameterOutOfRange, "Parameter out of range");
507 PrintErrorCode(ErrorCode_NotEnoughMemory, "Not enough memory"); 507 PrintErrorCode(ErrorCode_NotEnoughMemory, "The server hosting Orthanc is running out of memory");
508 PrintErrorCode(ErrorCode_BadParameterType, "Bad type for a parameter"); 508 PrintErrorCode(ErrorCode_BadParameterType, "Bad type for a parameter");
509 PrintErrorCode(ErrorCode_BadSequenceOfCalls, "Bad sequence of calls"); 509 PrintErrorCode(ErrorCode_BadSequenceOfCalls, "Bad sequence of calls");
510 PrintErrorCode(ErrorCode_InexistentItem, "Accessing an inexistent item"); 510 PrintErrorCode(ErrorCode_InexistentItem, "Accessing an inexistent item");
511 PrintErrorCode(ErrorCode_BadRequest, "Bad request"); 511 PrintErrorCode(ErrorCode_BadRequest, "Bad request");
512 PrintErrorCode(ErrorCode_NetworkProtocol, "Error in the network protocol"); 512 PrintErrorCode(ErrorCode_NetworkProtocol, "Error in the network protocol");
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_NullPointer, "Cannot handle a NULL pointer");
540 PrintErrorCode(ErrorCode_SQLiteNotOpened, "SQLite: The database is not opened"); 539 PrintErrorCode(ErrorCode_SQLiteNotOpened, "SQLite: The database is not opened");
541 PrintErrorCode(ErrorCode_SQLiteAlreadyOpened, "SQLite: Connection is already open"); 540 PrintErrorCode(ErrorCode_SQLiteAlreadyOpened, "SQLite: Connection is already open");
542 PrintErrorCode(ErrorCode_SQLiteCannotOpen, "SQLite: Unable to open the database"); 541 PrintErrorCode(ErrorCode_SQLiteCannotOpen, "SQLite: Unable to open the database");
543 PrintErrorCode(ErrorCode_SQLiteStatementAlreadyUsed, "SQLite: This cached statement is already being referred to"); 542 PrintErrorCode(ErrorCode_SQLiteStatementAlreadyUsed, "SQLite: This cached statement is already being referred to");