comparison Core/Enumerations.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 d90f737f2dde
children e2a3ff770b48
comparison
equal deleted inserted replaced
1979:9e0f408db796 1980:ebce5f456b8e
326 return "Unable to order the slices of the series"; 326 return "Unable to order the slices of the series";
327 327
328 case ErrorCode_NoWorklistHandler: 328 case ErrorCode_NoWorklistHandler:
329 return "No request handler factory for DICOM C-Find Modality SCP"; 329 return "No request handler factory for DICOM C-Find Modality SCP";
330 330
331 case ErrorCode_AlreadyExistingTag:
332 return "Cannot override the value of a tag that already exists";
333
331 default: 334 default:
332 if (error >= ErrorCode_START_PLUGINS) 335 if (error >= ErrorCode_START_PLUGINS)
333 { 336 {
334 return "Error encountered within some plugin"; 337 return "Error encountered within some plugin";
335 } 338 }