summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/gio/gio_outputstream.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'ucb/source/ucp/gio/gio_outputstream.cxx')
-rw-r--r--ucb/source/ucp/gio/gio_outputstream.cxx8
1 files changed, 1 insertions, 7 deletions
diff --git a/ucb/source/ucp/gio/gio_outputstream.cxx b/ucb/source/ucp/gio/gio_outputstream.cxx
index 4698ab93800c..da504b87e291 100644
--- a/ucb/source/ucp/gio/gio_outputstream.cxx
+++ b/ucb/source/ucp/gio/gio_outputstream.cxx
@@ -41,8 +41,6 @@ OutputStream::~OutputStream()
}
void SAL_CALL OutputStream::writeBytes( const css::uno::Sequence< sal_Int8 >& rData )
- throw( io::NotConnectedException, io::BufferSizeExceededException,
- io::IOException, uno::RuntimeException, std::exception)
{
if (!mpStream)
throw io::NotConnectedException();
@@ -53,8 +51,6 @@ void SAL_CALL OutputStream::writeBytes( const css::uno::Sequence< sal_Int8 >& rD
}
void SAL_CALL OutputStream::flush()
- throw( io::NotConnectedException, io::BufferSizeExceededException,
- io::IOException, uno::RuntimeException, std::exception )
{
if (!mpStream)
throw io::NotConnectedException();
@@ -65,14 +61,12 @@ void SAL_CALL OutputStream::flush()
}
void SAL_CALL OutputStream::closeOutput()
- throw( io::NotConnectedException, io::IOException,
- uno::RuntimeException, std::exception )
{
if (mpStream)
g_output_stream_close(G_OUTPUT_STREAM(mpStream), nullptr, nullptr);
}
-uno::Any OutputStream::queryInterface( const uno::Type &type ) throw( uno::RuntimeException, std::exception )
+uno::Any OutputStream::queryInterface( const uno::Type &type )
{
uno::Any aRet = ::cppu::queryInterface ( type,
static_cast< XOutputStream * >( this ) );