comparison Core/DicomParsing/ParsedDicomFile.cpp @ 2989:aa0f06b43b2e

fix
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 10 Dec 2018 12:19:19 +0100
parents d924f9bb61cc
children 4e43e67f8ecf
comparison
equal deleted inserted replaced
2988:9cc3d40e389b 2989:aa0f06b43b2e
1103 EmbedPdf(content); 1103 EmbedPdf(content);
1104 break; 1104 break;
1105 1105
1106 default: 1106 default:
1107 throw OrthancException(ErrorCode_NotImplemented, 1107 throw OrthancException(ErrorCode_NotImplemented,
1108 "Unsupported MIME type for the content of a new DICOM file: " + mime); 1108 "Unsupported MIME type for the content of a new DICOM file: " +
1109 std::string(EnumerationToString(mime)));
1109 } 1110 }
1110 1111
1111 return true; 1112 return true;
1112 } 1113 }
1113 1114