summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/gio/gio_seekable.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'ucb/source/ucp/gio/gio_seekable.cxx')
-rw-r--r--ucb/source/ucp/gio/gio_seekable.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/ucb/source/ucp/gio/gio_seekable.cxx b/ucb/source/ucp/gio/gio_seekable.cxx
index 0561dbed8b89..26e222a9461b 100644
--- a/ucb/source/ucp/gio/gio_seekable.cxx
+++ b/ucb/source/ucp/gio/gio_seekable.cxx
@@ -40,7 +40,7 @@ Seekable::~Seekable( void )
}
void SAL_CALL Seekable::truncate( void )
- throw( io::IOException, uno::RuntimeException )
+ throw( io::IOException, uno::RuntimeException, std::exception )
{
if (!mpStream)
throw io::NotConnectedException();
@@ -55,7 +55,7 @@ void SAL_CALL Seekable::truncate( void )
}
void SAL_CALL Seekable::seek( sal_Int64 location )
- throw( lang::IllegalArgumentException, io::IOException, uno::RuntimeException )
+ throw( lang::IllegalArgumentException, io::IOException, uno::RuntimeException, std::exception )
{
if (!mpStream)
throw io::NotConnectedException();
@@ -69,7 +69,7 @@ void SAL_CALL Seekable::seek( sal_Int64 location )
convertToException(pError, static_cast< cppu::OWeakObject * >(this));
}
-sal_Int64 SAL_CALL Seekable::getPosition() throw( io::IOException, uno::RuntimeException )
+sal_Int64 SAL_CALL Seekable::getPosition() throw( io::IOException, uno::RuntimeException, std::exception )
{
if (!mpStream)
throw io::NotConnectedException();
@@ -77,7 +77,7 @@ sal_Int64 SAL_CALL Seekable::getPosition() throw( io::IOException, uno::RuntimeE
return g_seekable_tell(mpStream);
}
-sal_Int64 SAL_CALL Seekable::getLength() throw( io::IOException, uno::RuntimeException )
+sal_Int64 SAL_CALL Seekable::getLength() throw( io::IOException, uno::RuntimeException, std::exception )
{
if (!mpStream)
throw io::NotConnectedException();
@@ -117,7 +117,7 @@ sal_Int64 SAL_CALL Seekable::getLength() throw( io::IOException, uno::RuntimeExc
return nSize;
}
-uno::Any Seekable::queryInterface( const uno::Type &type ) throw( uno::RuntimeException )
+uno::Any Seekable::queryInterface( const uno::Type &type ) throw( uno::RuntimeException, std::exception )
{
uno::Any aRet = ::cppu::queryInterface ( type,
static_cast< XSeekable * >( this ) );