diff vamp-json/VampJson.h @ 158:0876b5e67afe

Improve error handling and extend tests for it
author Chris Cannam <cannam@all-day-breakfast.com>
date Fri, 20 Jan 2017 22:24:44 +0000
parents 807a0a43096e
children 59c89b0e9375
line wrap: on
line diff
--- a/vamp-json/VampJson.h	Fri Jan 20 22:24:11 2017 +0000
+++ b/vamp-json/VampJson.h	Fri Jan 20 22:24:44 2017 +0000
@@ -1314,8 +1314,13 @@
 
         json11::Json::object eo;
         eo["code"] = 0;
-        eo["message"] = 
-            std::string("error in ") + type + " request: " + errorText;
+
+        if (responseType == RRType::NotValid) {
+            eo["message"] = errorText;
+        } else {
+            eo["message"] = 
+                std::string("error in ") + type + " request: " + errorText;
+        }
 
         jo["method"] = type;
         jo["error"] = eo;