comparison OrthancServer/Sources/ServerEnumerations.cpp @ 5117:849000df79b6

fix missing handling of StoreStatus_StorageFull
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 02 Dec 2022 15:32:53 +0100
parents e95fadefeb72
children 0ea402b4d901
comparison
equal deleted inserted replaced
5116:c9c052ba309c 5117:849000df79b6
338 return "Failure"; 338 return "Failure";
339 339
340 case StoreStatus_FilteredOut: 340 case StoreStatus_FilteredOut:
341 return "FilteredOut"; 341 return "FilteredOut";
342 342
343 case StoreStatus_StorageFull:
344 return "StorageFull";
345
343 default: 346 default:
344 throw OrthancException(ErrorCode_ParameterOutOfRange); 347 throw OrthancException(ErrorCode_ParameterOutOfRange);
345 } 348 }
346 } 349 }
347 350