summaryrefslogtreecommitdiffstats
path: root/parameter/ParameterMgr.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'parameter/ParameterMgr.cpp')
-rw-r--r--parameter/ParameterMgr.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/parameter/ParameterMgr.cpp b/parameter/ParameterMgr.cpp
index 59dc057..a07cc57 100644
--- a/parameter/ParameterMgr.cpp
+++ b/parameter/ParameterMgr.cpp
@@ -715,7 +715,7 @@ const CConfigurableElement* CParameterMgr::getConfigurableElement(const string&
if (!pElement) {
- strError = "Path not found";
+ strError = "Path not found: " + strPath;
return NULL;
}
@@ -734,14 +734,14 @@ CParameterHandle* CParameterMgr::createParameterHandle(const string& strPath, st
if (!pConfigurableElement) {
// Element not found
- strError = "Element not found";
+ strError = "Element not found: " + strPath;
return NULL;
}
if (!pConfigurableElement->isParameter()) {
// Element is not parameter
- strError = "Not a parameter";
+ strError = "Not a parameter: " + strPath;
return NULL;
}