summaryrefslogtreecommitdiff
path: root/framework/source/services
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-01-19 17:57:03 +0100
committerStephan Bergmann <sbergman@redhat.com>2017-01-19 18:03:20 +0100
commitfba7a44ee479540ba65b41ef1e647cdb93c20d14 (patch)
tree1926722f0707f008df833c30e178a44163953e85 /framework/source/services
parentcbf61ee5652573f7c18065c477598edf1e14156b (diff)
New loplugin:dynexcspec: Add @throws documentation, framework
Change-Id: I19a4517449be3defe97fe0d78dd1a16b08b79247
Diffstat (limited to 'framework/source/services')
-rw-r--r--framework/source/services/pathsettings.cxx2
-rw-r--r--framework/source/services/substitutepathvars.cxx5
2 files changed, 7 insertions, 0 deletions
diff --git a/framework/source/services/pathsettings.cxx b/framework/source/services/pathsettings.cxx
index 64963abf1945..e4440da6e30b 100644
--- a/framework/source/services/pathsettings.cxx
+++ b/framework/source/services/pathsettings.cxx
@@ -356,9 +356,11 @@ public:
private:
virtual void SAL_CALL disposing() final override;
+ /// @throws css::uno::RuntimeException
OUString getStringProperty(const OUString& p1)
throw(css::uno::RuntimeException);
+ /// @throws css::uno::RuntimeException
void setStringProperty(const OUString& p1, const OUString& p2)
throw(css::uno::RuntimeException);
diff --git a/framework/source/services/substitutepathvars.cxx b/framework/source/services/substitutepathvars.cxx
index 9eac3e48156a..861c973a3f1d 100644
--- a/framework/source/services/substitutepathvars.cxx
+++ b/framework/source/services/substitutepathvars.cxx
@@ -175,10 +175,15 @@ protected:
OUString GetHomeVariableValue() const;
// XStringSubstitution implementation methods
+ /// @throws css::container::NoSuchElementException
+ /// @throws css::uno::RuntimeException
OUString impl_substituteVariable( const OUString& aText, bool bSustRequired )
throw (css::container::NoSuchElementException, css::uno::RuntimeException);
+ /// @throws css::uno::RuntimeException
OUString impl_reSubstituteVariables( const OUString& aText )
throw (css::uno::RuntimeException);
+ /// @throws css::container::NoSuchElementException
+ /// @throws css::uno::RuntimeException
OUString const & impl_getSubstituteVariableValue( const OUString& variable )
throw (css::container::NoSuchElementException, css::uno::RuntimeException);