comparison Core/OrthancException.cpp @ 797:37adac56017a

ImageAccessor abstraction
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 06 May 2014 12:47:26 +0200
parents 309e686b41e7
children a811bdf8b8eb
comparison
equal deleted inserted replaced
796:e7b1ca0f1e04 797:37adac56017a
109 return "Corrupted file (inconsistent MD5 hash)"; 109 return "Corrupted file (inconsistent MD5 hash)";
110 110
111 case ErrorCode_InexistentTag: 111 case ErrorCode_InexistentTag:
112 return "Inexistent tag"; 112 return "Inexistent tag";
113 113
114 case ErrorCode_ReadOnly:
115 return "Cannot modify a read-only data structure";
116
114 case ErrorCode_Custom: 117 case ErrorCode_Custom:
115 default: 118 default:
116 return "???"; 119 return "???";
117 } 120 }
118 } 121 }