summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/tdoc/tdoc_stgelems.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'ucb/source/ucp/tdoc/tdoc_stgelems.cxx')
-rw-r--r--ucb/source/ucp/tdoc/tdoc_stgelems.cxx158
1 files changed, 0 insertions, 158 deletions
diff --git a/ucb/source/ucp/tdoc/tdoc_stgelems.cxx b/ucb/source/ucp/tdoc/tdoc_stgelems.cxx
index 4eb418dba25c..8046f938de2a 100644
--- a/ucb/source/ucp/tdoc/tdoc_stgelems.cxx
+++ b/ucb/source/ucp/tdoc/tdoc_stgelems.cxx
@@ -146,7 +146,6 @@ Storage::~Storage()
// virtual
uno::Any SAL_CALL Storage::queryInterface( const uno::Type& aType )
- throw ( uno::RuntimeException, std::exception )
{
// First, try to use interfaces implemented by myself and base class(es)
uno::Any aRet = StorageUNOBase::queryInterface( aType );
@@ -187,7 +186,6 @@ void SAL_CALL Storage::release()
// virtual
uno::Sequence< uno::Type > SAL_CALL Storage::getTypes()
- throw ( uno::RuntimeException, std::exception )
{
return m_xWrappedTypeProv->getTypes();
}
@@ -195,7 +193,6 @@ uno::Sequence< uno::Type > SAL_CALL Storage::getTypes()
// virtual
uno::Sequence< sal_Int8 > SAL_CALL Storage::getImplementationId()
- throw ( uno::RuntimeException, std::exception )
{
return css::uno::Sequence<sal_Int8>();
}
@@ -206,7 +203,6 @@ uno::Sequence< sal_Int8 > SAL_CALL Storage::getImplementationId()
// virtual
void SAL_CALL Storage::dispose()
- throw ( uno::RuntimeException, std::exception )
{
m_xWrappedStorage->dispose();
}
@@ -215,7 +211,6 @@ void SAL_CALL Storage::dispose()
// virtual
void SAL_CALL Storage::addEventListener(
const uno::Reference< lang::XEventListener >& xListener )
- throw ( uno::RuntimeException, std::exception )
{
m_xWrappedStorage->addEventListener( xListener );
}
@@ -223,7 +218,6 @@ void SAL_CALL Storage::addEventListener(
// virtual
void SAL_CALL Storage::removeEventListener(
const uno::Reference< lang::XEventListener >& aListener )
- throw (uno::RuntimeException, std::exception)
{
m_xWrappedStorage->removeEventListener( aListener );
}
@@ -234,7 +228,6 @@ void SAL_CALL Storage::removeEventListener(
// virtual
uno::Type SAL_CALL Storage::getElementType()
- throw ( uno::RuntimeException, std::exception )
{
return m_xWrappedStorage->getElementType();
}
@@ -242,7 +235,6 @@ uno::Type SAL_CALL Storage::getElementType()
// virtual
sal_Bool SAL_CALL Storage::hasElements()
- throw ( uno::RuntimeException, std::exception )
{
return m_xWrappedStorage->hasElements();
}
@@ -253,9 +245,6 @@ sal_Bool SAL_CALL Storage::hasElements()
// virtual
uno::Any SAL_CALL Storage::getByName( const OUString& aName )
- throw ( container::NoSuchElementException,
- lang::WrappedTargetException,
- uno::RuntimeException, std::exception )
{
return m_xWrappedStorage->getByName( aName );
}
@@ -263,7 +252,6 @@ uno::Any SAL_CALL Storage::getByName( const OUString& aName )
// virtual
uno::Sequence< OUString > SAL_CALL Storage::getElementNames()
- throw ( uno::RuntimeException, std::exception )
{
return m_xWrappedStorage->getElementNames();
}
@@ -271,7 +259,6 @@ uno::Sequence< OUString > SAL_CALL Storage::getElementNames()
// virtual
sal_Bool SAL_CALL Storage::hasByName( const OUString& aName )
- throw ( uno::RuntimeException, std::exception )
{
return m_xWrappedStorage->hasByName( aName );
}
@@ -283,11 +270,6 @@ sal_Bool SAL_CALL Storage::hasByName( const OUString& aName )
// virtual
void SAL_CALL Storage::copyToStorage(
const uno::Reference< embed::XStorage >& xDest )
- throw ( embed::InvalidStorageException,
- lang::IllegalArgumentException,
- io::IOException,
- embed::StorageWrappedTargetException,
- uno::RuntimeException, std::exception )
{
m_xWrappedStorage->copyToStorage( xDest );
}
@@ -296,12 +278,6 @@ void SAL_CALL Storage::copyToStorage(
// virtual
uno::Reference< io::XStream > SAL_CALL Storage::openStreamElement(
const OUString& aStreamName, sal_Int32 nOpenMode )
- throw ( embed::InvalidStorageException,
- lang::IllegalArgumentException,
- packages::WrongPasswordException,
- io::IOException,
- embed::StorageWrappedTargetException,
- uno::RuntimeException, std::exception )
{
return m_xWrappedStorage->openStreamElement( aStreamName, nOpenMode );
}
@@ -312,13 +288,6 @@ uno::Reference< io::XStream > SAL_CALL Storage::openEncryptedStreamElement(
const OUString& aStreamName,
sal_Int32 nOpenMode,
const OUString& aPassword )
- throw ( embed::InvalidStorageException,
- lang::IllegalArgumentException,
- packages::NoEncryptionException,
- packages::WrongPasswordException,
- io::IOException,
- embed::StorageWrappedTargetException,
- uno::RuntimeException, std::exception )
{
return m_xWrappedStorage->openEncryptedStreamElement(
aStreamName, nOpenMode, aPassword );
@@ -328,11 +297,6 @@ uno::Reference< io::XStream > SAL_CALL Storage::openEncryptedStreamElement(
// virtual
uno::Reference< embed::XStorage > SAL_CALL Storage::openStorageElement(
const OUString& aStorName, sal_Int32 nOpenMode )
- throw ( embed::InvalidStorageException,
- lang::IllegalArgumentException,
- io::IOException,
- embed::StorageWrappedTargetException,
- uno::RuntimeException, std::exception )
{
return m_xWrappedStorage->openStorageElement( aStorName, nOpenMode );
}
@@ -341,12 +305,6 @@ uno::Reference< embed::XStorage > SAL_CALL Storage::openStorageElement(
// virtual
uno::Reference< io::XStream > SAL_CALL Storage::cloneStreamElement(
const OUString& aStreamName )
- throw ( embed::InvalidStorageException,
- lang::IllegalArgumentException,
- packages::WrongPasswordException,
- io::IOException,
- embed::StorageWrappedTargetException,
- uno::RuntimeException, std::exception )
{
return m_xWrappedStorage->cloneStreamElement( aStreamName );
}
@@ -356,13 +314,6 @@ uno::Reference< io::XStream > SAL_CALL Storage::cloneStreamElement(
uno::Reference< io::XStream > SAL_CALL Storage::cloneEncryptedStreamElement(
const OUString& aStreamName,
const OUString& aPassword )
- throw ( embed::InvalidStorageException,
- lang::IllegalArgumentException,
- packages::NoEncryptionException,
- packages::WrongPasswordException,
- io::IOException,
- embed::StorageWrappedTargetException,
- uno::RuntimeException, std::exception )
{
return m_xWrappedStorage->cloneEncryptedStreamElement( aStreamName,
aPassword );
@@ -372,11 +323,6 @@ uno::Reference< io::XStream > SAL_CALL Storage::cloneEncryptedStreamElement(
// virtual
void SAL_CALL Storage::copyLastCommitTo(
const uno::Reference< embed::XStorage >& xTargetStorage )
- throw ( embed::InvalidStorageException,
- lang::IllegalArgumentException,
- io::IOException,
- embed::StorageWrappedTargetException,
- uno::RuntimeException, std::exception)
{
m_xWrappedStorage->copyLastCommitTo( xTargetStorage );
}
@@ -386,11 +332,6 @@ void SAL_CALL Storage::copyLastCommitTo(
void SAL_CALL Storage::copyStorageElementLastCommitTo(
const OUString& aStorName,
const uno::Reference< embed::XStorage >& xTargetStorage )
- throw ( embed::InvalidStorageException,
- lang::IllegalArgumentException,
- io::IOException,
- embed::StorageWrappedTargetException,
- uno::RuntimeException, std::exception)
{
m_xWrappedStorage->copyStorageElementLastCommitTo( aStorName, xTargetStorage );
}
@@ -399,10 +340,6 @@ void SAL_CALL Storage::copyStorageElementLastCommitTo(
// virtual
sal_Bool SAL_CALL Storage::isStreamElement(
const OUString& aElementName )
- throw ( container::NoSuchElementException,
- lang::IllegalArgumentException,
- embed::InvalidStorageException,
- uno::RuntimeException, std::exception )
{
return m_xWrappedStorage->isStreamElement( aElementName );
}
@@ -411,10 +348,6 @@ sal_Bool SAL_CALL Storage::isStreamElement(
// virtual
sal_Bool SAL_CALL Storage::isStorageElement(
const OUString& aElementName )
- throw ( container::NoSuchElementException,
- lang::IllegalArgumentException,
- embed::InvalidStorageException,
- uno::RuntimeException, std::exception )
{
return m_xWrappedStorage->isStorageElement( aElementName );
}
@@ -422,12 +355,6 @@ sal_Bool SAL_CALL Storage::isStorageElement(
// virtual
void SAL_CALL Storage::removeElement( const OUString& aElementName )
- throw ( embed::InvalidStorageException,
- lang::IllegalArgumentException,
- container::NoSuchElementException,
- io::IOException,
- embed::StorageWrappedTargetException,
- uno::RuntimeException, std::exception )
{
m_xWrappedStorage->removeElement( aElementName );
}
@@ -436,13 +363,6 @@ void SAL_CALL Storage::removeElement( const OUString& aElementName )
// virtual
void SAL_CALL Storage::renameElement( const OUString& aEleName,
const OUString& aNewName )
- throw ( embed::InvalidStorageException,
- lang::IllegalArgumentException,
- container::NoSuchElementException,
- container::ElementExistException,
- io::IOException,
- embed::StorageWrappedTargetException,
- uno::RuntimeException, std::exception )
{
m_xWrappedStorage->renameElement( aEleName, aNewName );
}
@@ -453,13 +373,6 @@ void SAL_CALL Storage::copyElementTo(
const OUString& aElementName,
const uno::Reference< embed::XStorage >& xDest,
const OUString& aNewName )
- throw ( embed::InvalidStorageException,
- lang::IllegalArgumentException,
- container::NoSuchElementException,
- container::ElementExistException,
- io::IOException,
- embed::StorageWrappedTargetException,
- uno::RuntimeException, std::exception )
{
m_xWrappedStorage->copyElementTo( aElementName, xDest, aNewName );
}
@@ -470,13 +383,6 @@ void SAL_CALL Storage::moveElementTo(
const OUString& aElementName,
const uno::Reference< embed::XStorage >& xDest,
const OUString& rNewName )
- throw ( embed::InvalidStorageException,
- lang::IllegalArgumentException,
- container::NoSuchElementException,
- container::ElementExistException,
- io::IOException,
- embed::StorageWrappedTargetException,
- uno::RuntimeException, std::exception )
{
m_xWrappedStorage->moveElementTo( aElementName, xDest, rNewName );
}
@@ -487,9 +393,6 @@ void SAL_CALL Storage::moveElementTo(
// virtual
void SAL_CALL Storage::commit()
- throw ( io::IOException,
- lang::WrappedTargetException,
- uno::RuntimeException, std::exception )
{
// Never commit a root storage (-> has no parent)!
// Would lead in writing the whole document to disk.
@@ -519,9 +422,6 @@ void SAL_CALL Storage::commit()
// virtual
void SAL_CALL Storage::revert()
- throw ( io::IOException,
- lang::WrappedTargetException,
- uno::RuntimeException, std::exception )
{
uno::Reference< embed::XStorage > xParentStorage = getParentStorage();
if ( xParentStorage.is() )
@@ -614,7 +514,6 @@ OutputStream::~OutputStream()
// virtual
uno::Any SAL_CALL OutputStream::queryInterface( const uno::Type& aType )
- throw ( uno::RuntimeException, std::exception )
{
uno::Any aRet = OutputStreamUNOBase::queryInterface( aType );
@@ -633,7 +532,6 @@ uno::Any SAL_CALL OutputStream::queryInterface( const uno::Type& aType )
// virtual
uno::Sequence< uno::Type > SAL_CALL OutputStream::getTypes()
- throw ( uno::RuntimeException, std::exception )
{
return m_xWrappedTypeProv->getTypes();
}
@@ -641,7 +539,6 @@ uno::Sequence< uno::Type > SAL_CALL OutputStream::getTypes()
// virtual
uno::Sequence< sal_Int8 > SAL_CALL OutputStream::getImplementationId()
- throw ( uno::RuntimeException, std::exception )
{
return css::uno::Sequence<sal_Int8>();
}
@@ -653,10 +550,6 @@ uno::Sequence< sal_Int8 > SAL_CALL OutputStream::getImplementationId()
// virtual
void SAL_CALL
OutputStream::writeBytes( const uno::Sequence< sal_Int8 >& aData )
- throw ( io::NotConnectedException,
- io::BufferSizeExceededException,
- io::IOException,
- uno::RuntimeException, std::exception )
{
m_xWrappedStream->writeBytes( aData );
}
@@ -665,10 +558,6 @@ OutputStream::writeBytes( const uno::Sequence< sal_Int8 >& aData )
// virtual
void SAL_CALL
OutputStream::flush()
- throw ( io::NotConnectedException,
- io::BufferSizeExceededException,
- io::IOException,
- uno::RuntimeException, std::exception )
{
m_xWrappedStream->flush();
}
@@ -677,10 +566,6 @@ OutputStream::flush()
// virtual
void SAL_CALL
OutputStream::closeOutput( )
- throw ( io::NotConnectedException,
- io::BufferSizeExceededException,
- io::IOException,
- uno::RuntimeException, std::exception )
{
m_xWrappedStream->closeOutput();
@@ -696,7 +581,6 @@ OutputStream::closeOutput( )
// virtual
void SAL_CALL
OutputStream::dispose()
- throw ( uno::RuntimeException, std::exception )
{
m_xWrappedComponent->dispose();
@@ -710,7 +594,6 @@ OutputStream::dispose()
void SAL_CALL
OutputStream::addEventListener(
const uno::Reference< lang::XEventListener >& xListener )
- throw ( uno::RuntimeException, std::exception )
{
m_xWrappedComponent->addEventListener( xListener );
}
@@ -720,7 +603,6 @@ OutputStream::addEventListener(
void SAL_CALL
OutputStream::removeEventListener(
const uno::Reference< lang::XEventListener >& aListener )
- throw ( uno::RuntimeException, std::exception )
{
m_xWrappedComponent->removeEventListener( aListener );
}
@@ -797,7 +679,6 @@ Stream::~Stream()
// virtual
uno::Any SAL_CALL Stream::queryInterface( const uno::Type& aType )
- throw ( uno::RuntimeException, std::exception )
{
uno::Any aRet = StreamUNOBase::queryInterface( aType );
@@ -816,7 +697,6 @@ uno::Any SAL_CALL Stream::queryInterface( const uno::Type& aType )
// virtual
uno::Sequence< uno::Type > SAL_CALL Stream::getTypes()
- throw ( uno::RuntimeException, std::exception )
{
return m_xWrappedTypeProv->getTypes();
}
@@ -824,7 +704,6 @@ uno::Sequence< uno::Type > SAL_CALL Stream::getTypes()
// virtual
uno::Sequence< sal_Int8 > SAL_CALL Stream::getImplementationId()
- throw ( uno::RuntimeException, std::exception )
{
return css::uno::Sequence<sal_Int8>();
}
@@ -835,7 +714,6 @@ uno::Sequence< sal_Int8 > SAL_CALL Stream::getImplementationId()
// virtual
uno::Reference< io::XInputStream > SAL_CALL Stream::getInputStream()
- throw( uno::RuntimeException, std::exception )
{
return uno::Reference< io::XInputStream >( this );
}
@@ -843,7 +721,6 @@ uno::Reference< io::XInputStream > SAL_CALL Stream::getInputStream()
// virtual
uno::Reference< io::XOutputStream > SAL_CALL Stream::getOutputStream()
- throw( uno::RuntimeException, std::exception )
{
return uno::Reference< io::XOutputStream >( this );
}
@@ -854,10 +731,6 @@ uno::Reference< io::XOutputStream > SAL_CALL Stream::getOutputStream()
// virtual
void SAL_CALL Stream::writeBytes( const uno::Sequence< sal_Int8 >& aData )
- throw( io::NotConnectedException,
- io::BufferSizeExceededException,
- io::IOException,
- uno::RuntimeException, std::exception )
{
if ( m_xWrappedOutputStream.is() )
{
@@ -869,10 +742,6 @@ void SAL_CALL Stream::writeBytes( const uno::Sequence< sal_Int8 >& aData )
// virtual
void SAL_CALL Stream::flush()
- throw( io::NotConnectedException,
- io::BufferSizeExceededException,
- io::IOException,
- uno::RuntimeException, std::exception )
{
if ( m_xWrappedOutputStream.is() )
{
@@ -884,9 +753,6 @@ void SAL_CALL Stream::flush()
// virtual
void SAL_CALL Stream::closeOutput()
- throw( io::NotConnectedException,
- io::IOException,
- uno::RuntimeException, std::exception )
{
if ( m_xWrappedOutputStream.is() )
{
@@ -905,8 +771,6 @@ void SAL_CALL Stream::closeOutput()
// virtual
void SAL_CALL Stream::truncate()
- throw( io::IOException,
- uno::RuntimeException, std::exception )
{
if ( m_xWrappedTruncate.is() )
{
@@ -922,10 +786,6 @@ void SAL_CALL Stream::truncate()
// virtual
sal_Int32 SAL_CALL Stream::readBytes( uno::Sequence< sal_Int8 >& aData,
sal_Int32 nBytesToRead )
- throw( io::NotConnectedException,
- io::BufferSizeExceededException,
- io::IOException,
- uno::RuntimeException, std::exception )
{
return m_xWrappedInputStream->readBytes( aData, nBytesToRead );
}
@@ -934,10 +794,6 @@ sal_Int32 SAL_CALL Stream::readBytes( uno::Sequence< sal_Int8 >& aData,
// virtual
sal_Int32 SAL_CALL Stream::readSomeBytes( uno::Sequence< sal_Int8 >& aData,
sal_Int32 nMaxBytesToRead )
- throw( io::NotConnectedException,
- io::BufferSizeExceededException,
- io::IOException,
- uno::RuntimeException, std::exception )
{
return m_xWrappedInputStream->readSomeBytes( aData, nMaxBytesToRead );
}
@@ -945,10 +801,6 @@ sal_Int32 SAL_CALL Stream::readSomeBytes( uno::Sequence< sal_Int8 >& aData,
// virtual
void SAL_CALL Stream::skipBytes( sal_Int32 nBytesToSkip )
- throw( io::NotConnectedException,
- io::BufferSizeExceededException,
- io::IOException,
- uno::RuntimeException, std::exception )
{
m_xWrappedInputStream->skipBytes( nBytesToSkip );
}
@@ -956,9 +808,6 @@ void SAL_CALL Stream::skipBytes( sal_Int32 nBytesToSkip )
// virtual
sal_Int32 SAL_CALL Stream::available()
- throw( io::NotConnectedException,
- io::IOException,
- uno::RuntimeException, std::exception )
{
return m_xWrappedInputStream->available();
}
@@ -966,9 +815,6 @@ sal_Int32 SAL_CALL Stream::available()
// virtual
void SAL_CALL Stream::closeInput()
- throw( io::NotConnectedException,
- io::IOException,
- uno::RuntimeException, std::exception )
{
m_xWrappedInputStream->closeInput();
}
@@ -979,7 +825,6 @@ void SAL_CALL Stream::closeInput()
// virtual
void SAL_CALL Stream::dispose()
- throw ( uno::RuntimeException, std::exception )
{
m_xWrappedComponent->dispose();
@@ -992,7 +837,6 @@ void SAL_CALL Stream::dispose()
// virtual
void SAL_CALL Stream::addEventListener(
const uno::Reference< lang::XEventListener >& xListener )
- throw ( uno::RuntimeException, std::exception )
{
m_xWrappedComponent->addEventListener( xListener );
}
@@ -1001,7 +845,6 @@ void SAL_CALL Stream::addEventListener(
// virtual
void SAL_CALL Stream::removeEventListener(
const uno::Reference< lang::XEventListener >& aListener )
- throw ( uno::RuntimeException, std::exception )
{
m_xWrappedComponent->removeEventListener( aListener );
}
@@ -1011,7 +854,6 @@ void SAL_CALL Stream::removeEventListener(
void Stream::commitChanges()
- throw( io::IOException )
{
uno::Reference< embed::XTransactedObject >
xParentTA( getParentStorage(), uno::UNO_QUERY );