summaryrefslogtreecommitdiff
path: root/extensions/source/propctrlr/propertyhandler.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/source/propctrlr/propertyhandler.cxx')
-rw-r--r--extensions/source/propctrlr/propertyhandler.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/extensions/source/propctrlr/propertyhandler.cxx b/extensions/source/propctrlr/propertyhandler.cxx
index d261ae48ecbe..c9d021735995 100644
--- a/extensions/source/propctrlr/propertyhandler.cxx
+++ b/extensions/source/propctrlr/propertyhandler.cxx
@@ -290,7 +290,7 @@ namespace pcr
FindPropertyByName( _rPropertyName )
);
if ( pFound == m_aSupportedProperties.end() )
- throw UnknownPropertyException();
+ throw UnknownPropertyException(_rPropertyName);
return *pFound;
}
@@ -319,7 +319,7 @@ namespace pcr
{
PropertyId nPropId = m_pInfoService->getPropertyId( _rPropertyName );
if ( nPropId == -1 )
- throw UnknownPropertyException();
+ throw UnknownPropertyException(_rPropertyName);
return nPropId;
}