coverity#706277 Uncaught exception

Change-Id: I1941e0a3a662faaac1fb9374437f3984b3a5c6d8
This commit is contained in:
Caolán McNamara 2014-01-27 15:27:15 +00:00
parent 166af05c63
commit 7cc3e9ca0c

View File

@ -51,12 +51,12 @@ public:
// XSingleComponentFactory:
virtual uno::Reference<uno::XInterface> SAL_CALL createInstanceWithContext(
uno::Reference<uno::XComponentContext> const& xContext )
throw (uno::Exception);
throw (uno::Exception, std::exception);
virtual uno::Reference<uno::XInterface> SAL_CALL
createInstanceWithArgumentsAndContext(
uno::Sequence<uno::Any> const& args,
uno::Reference<uno::XComponentContext> const& xContext )
throw (uno::Exception);
throw (uno::Exception, std::exception);
private:
virtual ~Factory();
@ -90,7 +90,7 @@ uno::Sequence<OUString> ServiceDecl::Factory::getSupportedServiceNames()
// XSingleComponentFactory:
uno::Reference<uno::XInterface> ServiceDecl::Factory::createInstanceWithContext(
uno::Reference<uno::XComponentContext> const& xContext )
throw (uno::Exception)
throw (uno::Exception, std::exception)
{
return m_rServiceDecl.m_createFunc(
m_rServiceDecl, uno::Sequence<uno::Any>(), xContext );
@ -100,7 +100,7 @@ uno::Reference<uno::XInterface>
ServiceDecl::Factory::createInstanceWithArgumentsAndContext(
uno::Sequence<uno::Any > const& args,
uno::Reference<uno::XComponentContext> const& xContext )
throw (uno::Exception)
throw (uno::Exception, std::exception)
{
return m_rServiceDecl.m_createFunc(
m_rServiceDecl, args, xContext );