summaryrefslogtreecommitdiff
path: root/ucb/source/cacher/cacheddynamicresultsetstub.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'ucb/source/cacher/cacheddynamicresultsetstub.cxx')
-rw-r--r--ucb/source/cacher/cacheddynamicresultsetstub.cxx10
1 files changed, 0 insertions, 10 deletions
diff --git a/ucb/source/cacher/cacheddynamicresultsetstub.cxx b/ucb/source/cacher/cacheddynamicresultsetstub.cxx
index 293063673652..e25fa173bcf1 100644
--- a/ucb/source/cacher/cacheddynamicresultsetstub.cxx
+++ b/ucb/source/cacher/cacheddynamicresultsetstub.cxx
@@ -90,7 +90,6 @@ void SAL_CALL CachedDynamicResultSetStub::release()
Any SAL_CALL CachedDynamicResultSetStub
::queryInterface( const Type& rType )
- throw ( RuntimeException, std::exception )
{
//list all interfaces inclusive baseclasses of interfaces
@@ -121,19 +120,16 @@ XTYPEPROVIDER_IMPL_5( CachedDynamicResultSetStub
// XServiceInfo methods.
OUString SAL_CALL CachedDynamicResultSetStub::getImplementationName()
- throw( css::uno::RuntimeException, std::exception )
{
return OUString( "com.sun.star.comp.ucb.CachedDynamicResultSetStub" );
}
sal_Bool SAL_CALL CachedDynamicResultSetStub::supportsService( const OUString& ServiceName )
- throw( css::uno::RuntimeException, std::exception )
{
return cppu::supportsService( this, ServiceName );
}
css::uno::Sequence< OUString > SAL_CALL CachedDynamicResultSetStub::getSupportedServiceNames()
- throw( css::uno::RuntimeException, std::exception )
{
return { CACHED_DRS_STUB_SERVICE_NAME };
}
@@ -168,7 +164,6 @@ void SAL_CALL CachedDynamicResultSetStubFactory::release()
}
css::uno::Any SAL_CALL CachedDynamicResultSetStubFactory::queryInterface( const css::uno::Type & rType )
- throw( css::uno::RuntimeException, std::exception )
{
css::uno::Any aRet = cppu::queryInterface( rType,
(static_cast< XTypeProvider* >(this)),
@@ -194,7 +189,6 @@ XSERVICEINFO_COMMOM_IMPL( CachedDynamicResultSetStubFactory,
/// @throws css::uno::Exception
static css::uno::Reference< css::uno::XInterface > SAL_CALL
CachedDynamicResultSetStubFactory_CreateInstance( const css::uno::Reference< css::lang::XMultiServiceFactory> & rSMgr )
- throw( css::uno::Exception )
{
css::lang::XServiceInfo* pX =
static_cast<css::lang::XServiceInfo*>(new CachedDynamicResultSetStubFactory( ucbhelper::getComponentContext(rSMgr) ));
@@ -221,7 +215,6 @@ ONE_INSTANCE_SERVICE_FACTORY_IMPL( CachedDynamicResultSetStubFactory );
Reference< XDynamicResultSet > SAL_CALL CachedDynamicResultSetStubFactory
::createCachedDynamicResultSetStub(
const Reference< XDynamicResultSet > & Source )
- throw( RuntimeException, std::exception )
{
Reference< XDynamicResultSet > xRet;
xRet = new CachedDynamicResultSetStub( Source, m_xContext );
@@ -236,9 +229,6 @@ void SAL_CALL CachedDynamicResultSetStubFactory
, const Sequence< NumberedSortingInfo > & SortingInfo
, const Reference< XAnyCompareFactory > & CompareFactory
)
- throw ( ListenerAlreadySetException
- , AlreadyInitializedException
- , RuntimeException, std::exception )
{
OSL_ENSURE( Source.is(), "a Source is needed" );
OSL_ENSURE( TargetCache.is(), "a TargetCache is needed" );