coverity#706540 Uncaught exception

Change-Id: I9dabd74824ec7cffe5371ed8be202ad27fecc80d
This commit is contained in:
Caolán McNamara
2014-11-14 10:04:38 +00:00
parent 99bada2f4c
commit 275eb9c78e

View File

@@ -643,7 +643,19 @@ void SAL_CALL OControlModel::setParent(const Reference< XInterface >& _rxParent)
OUString SAL_CALL OControlModel::getName() throw(RuntimeException, std::exception)
{
OUString aReturn;
OPropertySetHelper::getFastPropertyValue(PROPERTY_ID_NAME) >>= aReturn;
try
{
OPropertySetHelper::getFastPropertyValue(PROPERTY_ID_NAME) >>= aReturn;
}
catch (const css::beans::UnknownPropertyException&)
{
css::uno::Any a(cppu::getCaughtException());
throw WrappedTargetRuntimeException(
"OControlModel::getName",
*const_cast< OControlModel* >( this ),
a
);
}
return aReturn;
}