comparison OrthancServer/main.cpp @ 1980:ebce5f456b8e

new error code: ErrorCode_AlreadyExistingTag
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 22 Apr 2016 08:57:33 +0200
parents 877713b3a91c
children b5d4f9c156ad
comparison
equal deleted inserted replaced
1979:9e0f408db796 1980:ebce5f456b8e
590 PrintErrorCode(ErrorCode_DatabaseBackendAlreadyRegistered, "Another plugin has already registered a custom database back-end"); 590 PrintErrorCode(ErrorCode_DatabaseBackendAlreadyRegistered, "Another plugin has already registered a custom database back-end");
591 PrintErrorCode(ErrorCode_DatabaseNotInitialized, "Plugin trying to call the database during its initialization"); 591 PrintErrorCode(ErrorCode_DatabaseNotInitialized, "Plugin trying to call the database during its initialization");
592 PrintErrorCode(ErrorCode_SslDisabled, "Orthanc has been built without SSL support"); 592 PrintErrorCode(ErrorCode_SslDisabled, "Orthanc has been built without SSL support");
593 PrintErrorCode(ErrorCode_CannotOrderSlices, "Unable to order the slices of the series"); 593 PrintErrorCode(ErrorCode_CannotOrderSlices, "Unable to order the slices of the series");
594 PrintErrorCode(ErrorCode_NoWorklistHandler, "No request handler factory for DICOM C-Find Modality SCP"); 594 PrintErrorCode(ErrorCode_NoWorklistHandler, "No request handler factory for DICOM C-Find Modality SCP");
595 PrintErrorCode(ErrorCode_AlreadyExistingTag, "Cannot override the value of a tag that already exists");
595 } 596 }
596 597
597 std::cout << std::endl; 598 std::cout << std::endl;
598 } 599 }
599 600