diff 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
line wrap: on
line diff
--- a/OrthancServer/Sources/ServerEnumerations.cpp	Fri Dec 02 15:08:35 2022 +0100
+++ b/OrthancServer/Sources/ServerEnumerations.cpp	Fri Dec 02 15:32:53 2022 +0100
@@ -340,6 +340,9 @@
       case StoreStatus_FilteredOut:
         return "FilteredOut";
 
+      case StoreStatus_StorageFull:
+        return "StorageFull";
+
       default:
         throw OrthancException(ErrorCode_ParameterOutOfRange);
     }