summaryrefslogtreecommitdiff
path: root/comphelper/source/property
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-01-19 18:00:00 +0100
committerStephan Bergmann <sbergman@redhat.com>2017-01-19 18:03:24 +0100
commita10b95bcc97896f7f8d8643593a5d759f41ac82d (patch)
tree76cdb3318b9dec6bc0238d6630b1769408e9ae4a /comphelper/source/property
parent5b2b75ac26961d3cef093ca546a5316be6f2d782 (diff)
New loplugin:dynexcspec: Add @throws documentation, comphelper
Change-Id: I115c5c34cf97858d9fdd96432cb57bde6d4537cb
Diffstat (limited to 'comphelper/source/property')
-rw-r--r--comphelper/source/property/propagg.cxx2
-rw-r--r--comphelper/source/property/propertysetinfo.cxx1
2 files changed, 3 insertions, 0 deletions
diff --git a/comphelper/source/property/propagg.cxx b/comphelper/source/property/propagg.cxx
index e68ad495314b..e8383c362c80 100644
--- a/comphelper/source/property/propagg.cxx
+++ b/comphelper/source/property/propagg.cxx
@@ -272,6 +272,8 @@ namespace internal
bool isResponsibleFor( sal_Int32 _nHandle );
/// actually forwards a property value to the aggregate
+ ///
+ /// @throws Exception
void doForward( sal_Int32 _nHandle, const Any& _rValue ) throw ( Exception );
sal_Int32 getCurrentlyForwardedProperty( ) const { return m_nCurrentlyForwarding; }
diff --git a/comphelper/source/property/propertysetinfo.cxx b/comphelper/source/property/propertysetinfo.cxx
index 93293362a8ba..9125d694a71d 100644
--- a/comphelper/source/property/propertysetinfo.cxx
+++ b/comphelper/source/property/propertysetinfo.cxx
@@ -44,6 +44,7 @@ public:
const PropertyMap& getPropertyMap() const throw() { return maPropertyMap;}
+ /// @throws UnknownPropertyException
Property getPropertyByName( const OUString& aName ) throw( UnknownPropertyException );
bool hasPropertyByName( const OUString& aName ) throw();