summaryrefslogtreecommitdiff
path: root/include/ucbhelper/std_inputstream.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/ucbhelper/std_inputstream.hxx')
-rw-r--r--include/ucbhelper/std_inputstream.hxx18
1 files changed, 9 insertions, 9 deletions
diff --git a/include/ucbhelper/std_inputstream.hxx b/include/ucbhelper/std_inputstream.hxx
index 85b19434e251..c0b09854dd36 100644
--- a/include/ucbhelper/std_inputstream.hxx
+++ b/include/ucbhelper/std_inputstream.hxx
@@ -39,7 +39,7 @@ namespace ucbhelper
~StdInputStream();
virtual css::uno::Any SAL_CALL queryInterface ( const css::uno::Type& rType )
- throw ( css::uno::RuntimeException );
+ throw ( css::uno::RuntimeException, std::exception );
virtual void SAL_CALL acquire( ) throw ( );
@@ -51,7 +51,7 @@ namespace ucbhelper
throw ( css::io::NotConnectedException,
css::io::BufferSizeExceededException,
css::io::IOException,
- css::uno::RuntimeException );
+ css::uno::RuntimeException, std::exception );
virtual sal_Int32 SAL_CALL
readSomeBytes ( css::uno::Sequence< sal_Int8 >& aData,
@@ -59,26 +59,26 @@ namespace ucbhelper
throw ( css::io::NotConnectedException,
css::io::BufferSizeExceededException,
css::io::IOException,
- css::uno::RuntimeException );
+ css::uno::RuntimeException, std::exception );
virtual void SAL_CALL
skipBytes ( sal_Int32 nBytesToSkip )
throw ( css::io::NotConnectedException,
css::io::BufferSizeExceededException,
css::io::IOException,
- css::uno::RuntimeException );
+ css::uno::RuntimeException, std::exception );
virtual sal_Int32 SAL_CALL
available ( )
throw ( css::io::NotConnectedException,
css::io::IOException,
- css::uno::RuntimeException );
+ css::uno::RuntimeException, std::exception );
virtual void SAL_CALL
closeInput ( )
throw ( css::io::NotConnectedException,
css::io::IOException,
- css::uno::RuntimeException );
+ css::uno::RuntimeException, std::exception );
/** XSeekable
@@ -88,18 +88,18 @@ namespace ucbhelper
seek ( sal_Int64 location )
throw ( css::lang::IllegalArgumentException,
css::io::IOException,
- css::uno::RuntimeException );
+ css::uno::RuntimeException, std::exception );
virtual sal_Int64 SAL_CALL
getPosition ( )
- throw ( css::io::IOException, css::uno::RuntimeException );
+ throw ( css::io::IOException, css::uno::RuntimeException, std::exception );
virtual sal_Int64 SAL_CALL
getLength ( )
throw ( css::io::IOException,
- css::uno::RuntimeException );
+ css::uno::RuntimeException, std::exception );
private: