summaryrefslogtreecommitdiff
path: root/ucbhelper/source/provider/fd_inputstream.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'ucbhelper/source/provider/fd_inputstream.cxx')
-rw-r--r--ucbhelper/source/provider/fd_inputstream.cxx24
1 files changed, 0 insertions, 24 deletions
diff --git a/ucbhelper/source/provider/fd_inputstream.cxx b/ucbhelper/source/provider/fd_inputstream.cxx
index d22b2b651730..c98884087c07 100644
--- a/ucbhelper/source/provider/fd_inputstream.cxx
+++ b/ucbhelper/source/provider/fd_inputstream.cxx
@@ -56,10 +56,6 @@ namespace ucbhelper
sal_Int32 SAL_CALL FdInputStream::readBytes(Sequence< sal_Int8 >& aData,
sal_Int32 nBytesToRead)
- throw(NotConnectedException,
- BufferSizeExceededException,
- IOException,
- RuntimeException, std::exception)
{
osl::MutexGuard aGuard(m_aMutex);
@@ -84,20 +80,12 @@ namespace ucbhelper
sal_Int32 SAL_CALL FdInputStream::readSomeBytes( Sequence< sal_Int8 >& aData,
sal_Int32 nMaxBytesToRead )
- throw( NotConnectedException,
- BufferSizeExceededException,
- IOException,
- RuntimeException, std::exception)
{
return readBytes(aData,nMaxBytesToRead);
}
void SAL_CALL FdInputStream::skipBytes(sal_Int32 nBytesToSkip)
- throw(NotConnectedException,
- BufferSizeExceededException,
- IOException,
- RuntimeException, std::exception)
{
osl::MutexGuard aGuard(m_aMutex);
if(!m_tmpfl)
@@ -109,18 +97,12 @@ namespace ucbhelper
sal_Int32 SAL_CALL FdInputStream::available()
- throw(NotConnectedException,
- IOException,
- RuntimeException, std::exception)
{
return sal::static_int_cast<sal_Int32>(m_nLength - getPosition());
}
void SAL_CALL FdInputStream::closeInput()
- throw(NotConnectedException,
- IOException,
- RuntimeException, std::exception)
{
osl::MutexGuard aGuard(m_aMutex);
if(m_tmpfl)
@@ -132,9 +114,6 @@ namespace ucbhelper
void SAL_CALL FdInputStream::seek(sal_Int64 location)
- throw( IllegalArgumentException,
- IOException,
- RuntimeException, std::exception )
{
osl::MutexGuard aGuard(m_aMutex);
if(!m_tmpfl)
@@ -147,8 +126,6 @@ namespace ucbhelper
sal_Int64 SAL_CALL
FdInputStream::getPosition()
- throw( IOException,
- RuntimeException, std::exception )
{
osl::MutexGuard aGuard(m_aMutex);
if(!m_tmpfl)
@@ -161,7 +138,6 @@ namespace ucbhelper
sal_Int64 SAL_CALL FdInputStream::getLength()
- throw( IOException,RuntimeException, std::exception )
{
return m_nLength;
}