diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-06-02 15:25:11 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-06-02 17:00:00 +0100 |
commit | 09188ebfc44af4a7a3e4747c80f1a49f3c2c288d (patch) | |
tree | 3bd491de66ccf8ad0f66706ab929f0067e35af6f /include | |
parent | 12402d250325f23e709b9b266de2d74ac4b4eab4 (diff) |
coverity#706959 Uncaught exception
Change-Id: I6b18bd2df7ef190b39ceacd625bf2b62a53892fa
Diffstat (limited to 'include')
-rw-r--r-- | include/vbahelper/vbaeventshelperbase.hxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/vbahelper/vbaeventshelperbase.hxx b/include/vbahelper/vbaeventshelperbase.hxx index 0f1b42c8d5ff..8641f067c334 100644 --- a/include/vbahelper/vbaeventshelperbase.hxx +++ b/include/vbahelper/vbaeventshelperbase.hxx @@ -135,7 +135,9 @@ protected: /** Derived classes have to return the name of the Basic document module. */ virtual OUString implGetDocumentModuleName( const EventHandlerInfo& rInfo, - const css::uno::Sequence< css::uno::Any >& rArgs ) const throw (css::lang::IllegalArgumentException) = 0; + const css::uno::Sequence< css::uno::Any >& rArgs ) const + throw (css::lang::IllegalArgumentException, + css::uno::RuntimeException) = 0; private: typedef ::std::map< sal_Int32, OUString > ModulePathMap; |