Kaydet (Commit) ecc58cf3 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#707263 Uncaught exception

Change-Id: I7c43c91cad4045a3439182925ca195fc898f593f
üst 839d92a2
......@@ -940,7 +940,17 @@ bool SvxMediaShape::getPropertyValueImpl( const OUString& rName, const SfxItemPr
break;
case OWN_ATTR_MEDIA_STREAM:
rValue <<= pMedia->GetInputStream();
try
{
rValue <<= pMedia->GetInputStream();
}
catch (const css::ucb::ContentCreationException& e)
{
throw css::lang::WrappedTargetException(
"Error Getting InputStream!",
static_cast < OWeakObject * > ( this ),
makeAny( e ) );
}
break;
case OWN_ATTR_MEDIA_TEMPFILEURL:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment