comparison Core/OrthancException.cpp @ 853:839be3022203 jpeg

DicomImageInformation
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 06 Jun 2014 11:45:16 +0200
parents a811bdf8b8eb
children 0570a8c859cb
comparison
equal deleted inserted replaced
852:5944b8b80842 853:839be3022203
113 return "Inexistent tag"; 113 return "Inexistent tag";
114 114
115 case ErrorCode_ReadOnly: 115 case ErrorCode_ReadOnly:
116 return "Cannot modify a read-only data structure"; 116 return "Cannot modify a read-only data structure";
117 117
118 case ErrorCode_IncompatibleImageSize:
119 return "Incompatible size of the images";
120
121 case ErrorCode_IncompatibleImageFormat:
122 return "Incompatible format of the images";
123
118 case ErrorCode_Custom: 124 case ErrorCode_Custom:
119 default: 125 default:
120 return "???"; 126 return "???";
121 } 127 }
122 } 128 }