summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/ftp/ftpintreq.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'ucb/source/ucp/ftp/ftpintreq.cxx')
-rw-r--r--ucb/source/ucp/ftp/ftpintreq.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/ucb/source/ucp/ftp/ftpintreq.cxx b/ucb/source/ucp/ftp/ftpintreq.cxx
index fff1d3d3ed39..e968e9c5be18 100644
--- a/ucb/source/ucp/ftp/ftpintreq.cxx
+++ b/ucb/source/ucp/ftp/ftpintreq.cxx
@@ -56,7 +56,7 @@ XInteractionApproveImpl::release( void )
Any SAL_CALL
XInteractionApproveImpl::queryInterface( const Type& rType )
- throw( RuntimeException )
+ throw( RuntimeException, std::exception )
{
Any aRet = cppu::queryInterface(
rType,
@@ -76,7 +76,7 @@ XTYPEPROVIDER_IMPL_2( XInteractionApproveImpl,
void SAL_CALL XInteractionApproveImpl::select()
- throw (RuntimeException)
+ throw (RuntimeException, std::exception)
{
m_bSelected = true;
}
@@ -115,7 +115,7 @@ XInteractionDisapproveImpl::release( void )
Any SAL_CALL
XInteractionDisapproveImpl::queryInterface( const Type& rType )
- throw( RuntimeException )
+ throw( RuntimeException, std::exception )
{
Any aRet = cppu::queryInterface(
rType,
@@ -135,7 +135,7 @@ XTYPEPROVIDER_IMPL_2( XInteractionDisapproveImpl,
void SAL_CALL XInteractionDisapproveImpl::select()
- throw (RuntimeException)
+ throw (RuntimeException, std::exception)
{
m_bSelected = true;
@@ -175,7 +175,7 @@ XInteractionRequestImpl::release( void )
Any SAL_CALL
XInteractionRequestImpl::queryInterface( const Type& rType )
- throw( RuntimeException )
+ throw( RuntimeException, std::exception )
{
Any aRet = cppu::queryInterface(
rType,
@@ -195,7 +195,7 @@ XTYPEPROVIDER_IMPL_2( XInteractionRequestImpl,
Any SAL_CALL XInteractionRequestImpl::getRequest( )
- throw (RuntimeException)
+ throw (RuntimeException, std::exception)
{
Any aAny;
UnsupportedNameClashException excep;
@@ -207,7 +207,7 @@ Any SAL_CALL XInteractionRequestImpl::getRequest( )
Sequence<Reference<XInteractionContinuation > > SAL_CALL
XInteractionRequestImpl::getContinuations( )
- throw (RuntimeException)
+ throw (RuntimeException, std::exception)
{
return m_aSeq;
}