summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/file/filinsreq.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-02-25 21:31:58 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-02-26 18:22:20 +0100
commit5e21a413c788f839a66d9e4c14e745ed18058db8 (patch)
treed4451246461346a425ad6f796e08bf1514cdd942 /ucb/source/ucp/file/filinsreq.cxx
parent6fc2bd0094a23aafadeef3f4a8c2803d621a588d (diff)
cppuhelper: retrofit std::exception into overriding exception specs
Change-Id: I56e32131b7991ee9948ce46765632eb823d463b3
Diffstat (limited to 'ucb/source/ucp/file/filinsreq.cxx')
-rw-r--r--ucb/source/ucp/file/filinsreq.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/ucb/source/ucp/file/filinsreq.cxx b/ucb/source/ucp/file/filinsreq.cxx
index 8809360d3e39..4ae082618aa4 100644
--- a/ucb/source/ucp/file/filinsreq.cxx
+++ b/ucb/source/ucp/file/filinsreq.cxx
@@ -58,7 +58,7 @@ XInteractionSupplyNameImpl::release( void )
Any SAL_CALL
XInteractionSupplyNameImpl::queryInterface( const Type& rType )
- throw( RuntimeException )
+ throw( RuntimeException, std::exception )
{
Any aRet = cppu::queryInterface( rType,
(static_cast< lang::XTypeProvider* >(this)),
@@ -97,7 +97,7 @@ XInteractionAbortImpl::release( void )
Any SAL_CALL
XInteractionAbortImpl::queryInterface( const Type& rType )
- throw( RuntimeException )
+ throw( RuntimeException, std::exception )
{
Any aRet = cppu::queryInterface( rType,
(static_cast< lang::XTypeProvider* >(this)),
@@ -155,7 +155,7 @@ XInteractionRequestImpl::release( void )
Any SAL_CALL
XInteractionRequestImpl::queryInterface( const Type& rType )
- throw( RuntimeException )
+ throw( RuntimeException, std::exception )
{
Any aRet =
cppu::queryInterface(
@@ -177,7 +177,7 @@ XTYPEPROVIDER_IMPL_2( XInteractionRequestImpl,
Any SAL_CALL
XInteractionRequestImpl::getRequest()
- throw(RuntimeException)
+ throw(RuntimeException, std::exception)
{
Any aAny;
if(m_nErrorCode == TASKHANDLING_FOLDER_EXISTS_MKDIR)