summaryrefslogtreecommitdiff
path: root/desktop/source/migration/services/basicmigration.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'desktop/source/migration/services/basicmigration.cxx')
-rw-r--r--desktop/source/migration/services/basicmigration.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/desktop/source/migration/services/basicmigration.cxx b/desktop/source/migration/services/basicmigration.cxx
index e61607d5d6bc..45d03f71d02b 100644
--- a/desktop/source/migration/services/basicmigration.cxx
+++ b/desktop/source/migration/services/basicmigration.cxx
@@ -162,7 +162,7 @@ namespace migration
// XServiceInfo
- OUString BasicMigration::getImplementationName() throw (RuntimeException)
+ OUString BasicMigration::getImplementationName() throw (RuntimeException, std::exception)
{
return BasicMigration_getImplementationName();
}
@@ -170,14 +170,14 @@ namespace migration
sal_Bool BasicMigration::supportsService(OUString const & ServiceName)
- throw (css::uno::RuntimeException)
+ throw (css::uno::RuntimeException, std::exception)
{
return cppu::supportsService(this, ServiceName);
}
- Sequence< OUString > BasicMigration::getSupportedServiceNames() throw (RuntimeException)
+ Sequence< OUString > BasicMigration::getSupportedServiceNames() throw (RuntimeException, std::exception)
{
return BasicMigration_getSupportedServiceNames();
}
@@ -186,7 +186,7 @@ namespace migration
// XInitialization
- void BasicMigration::initialize( const Sequence< Any >& aArguments ) throw (Exception, RuntimeException)
+ void BasicMigration::initialize( const Sequence< Any >& aArguments ) throw (Exception, RuntimeException, std::exception)
{
::osl::MutexGuard aGuard( m_aMutex );
@@ -213,7 +213,7 @@ namespace migration
Any BasicMigration::execute( const Sequence< beans::NamedValue >& )
- throw (lang::IllegalArgumentException, Exception, RuntimeException)
+ throw (lang::IllegalArgumentException, Exception, RuntimeException, std::exception)
{
::osl::MutexGuard aGuard( m_aMutex );