summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/file/filprp.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'ucb/source/ucp/file/filprp.cxx')
-rw-r--r--ucb/source/ucp/file/filprp.cxx4
1 files changed, 0 insertions, 4 deletions
diff --git a/ucb/source/ucp/file/filprp.cxx b/ucb/source/ucp/file/filprp.cxx
index be7fbecfeb64..179eb487098a 100644
--- a/ucb/source/ucp/file/filprp.cxx
+++ b/ucb/source/ucp/file/filprp.cxx
@@ -76,8 +76,6 @@ XPropertySetInfo_impl::~XPropertySetInfo_impl()
beans::Property SAL_CALL
XPropertySetInfo_impl::getPropertyByName( const OUString& aName )
- throw( beans::UnknownPropertyException,
- RuntimeException, std::exception)
{
for( sal_Int32 i = 0; i < m_seq.getLength(); ++i )
if( m_seq[i].Name == aName ) return m_seq[i];
@@ -88,7 +86,6 @@ XPropertySetInfo_impl::getPropertyByName( const OUString& aName )
Sequence< beans::Property > SAL_CALL
XPropertySetInfo_impl::getProperties()
- throw( RuntimeException, std::exception )
{
return m_seq;
}
@@ -96,7 +93,6 @@ XPropertySetInfo_impl::getProperties()
sal_Bool SAL_CALL
XPropertySetInfo_impl::hasPropertyByName( const OUString& aName )
- throw( RuntimeException, std::exception )
{
for( sal_Int32 i = 0; i < m_seq.getLength(); ++i )
if( m_seq[i].Name == aName ) return true;