summaryrefslogtreecommitdiff
path: root/extensions/source/propctrlr/genericpropertyhandler.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/source/propctrlr/genericpropertyhandler.cxx')
-rw-r--r--extensions/source/propctrlr/genericpropertyhandler.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/extensions/source/propctrlr/genericpropertyhandler.cxx b/extensions/source/propctrlr/genericpropertyhandler.cxx
index 40308ba43d8a..c393e3921137 100644
--- a/extensions/source/propctrlr/genericpropertyhandler.cxx
+++ b/extensions/source/propctrlr/genericpropertyhandler.cxx
@@ -338,7 +338,7 @@ namespace pcr
{
::osl::MutexGuard aGuard( m_aMutex );
if ( !m_xComponent.is() )
- throw UnknownPropertyException();
+ throw UnknownPropertyException(_rPropertyName);
return m_xComponent->getPropertyValue( _rPropertyName );
}
@@ -347,7 +347,7 @@ namespace pcr
{
::osl::MutexGuard aGuard( m_aMutex );
if ( !m_xComponent.is() )
- throw UnknownPropertyException();
+ throw UnknownPropertyException(_rPropertyName);
m_xComponent->setPropertyValue( _rPropertyName, _rValue );
}
@@ -367,7 +367,7 @@ namespace pcr
PropertyMap::const_iterator pos = m_aProperties.find( _rPropertyName );
if ( pos == m_aProperties.end() )
- throw UnknownPropertyException();
+ throw UnknownPropertyException(_rPropertyName);
Any aPropertyValue;
if ( !_rControlValue.hasValue() )
@@ -393,7 +393,7 @@ namespace pcr
PropertyMap::const_iterator pos = m_aProperties.find( _rPropertyName );
if ( pos == m_aProperties.end() )
- throw UnknownPropertyException();
+ throw UnknownPropertyException(_rPropertyName);
Any aControlValue;
if ( !_rPropertyValue.hasValue() )
@@ -553,7 +553,7 @@ namespace pcr
PropertyMap::const_iterator pos = m_aProperties.find( _rPropertyName );
if ( pos == m_aProperties.end() )
- throw UnknownPropertyException();
+ throw UnknownPropertyException(_rPropertyName);
LineDescriptor aDescriptor;
aDescriptor.DisplayName = _rPropertyName;