diff options
author | Noel Grandin <noel@peralex.com> | 2014-10-10 09:41:56 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-10-10 10:14:17 +0200 |
commit | 36ec3ddc0b666c5c35cd7662632a72237b43a810 (patch) | |
tree | 453a1a79f9a80acd593ad30551b2340770e21fce /framework | |
parent | c2621e6482310b5dc2c8dd2c3dc0ea384784b46c (diff) |
cid#1244952 Uncaught exception
Change-Id: Ied23e7df1d8ebda9976e63d03c122c058addf274
Diffstat (limited to 'framework')
-rw-r--r-- | framework/source/inc/loadenv/loadenv.hxx | 2 | ||||
-rw-r--r-- | framework/source/loadenv/loadenv.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/framework/source/inc/loadenv/loadenv.hxx b/framework/source/inc/loadenv/loadenv.hxx index 6ad518e58c16..c5d2228a3dc0 100644 --- a/framework/source/inc/loadenv/loadenv.hxx +++ b/framework/source/inc/loadenv/loadenv.hxx @@ -465,7 +465,7 @@ private: the whole runtime can't be used any longer. */ bool impl_loadContent() - throw(LoadEnvException, css::uno::RuntimeException, css::beans::IllegalTypeException); + throw(LoadEnvException, css::uno::RuntimeException, css::beans::IllegalTypeException, std::exception); /** @short checks if the specified content is already loaded. diff --git a/framework/source/loadenv/loadenv.cxx b/framework/source/loadenv/loadenv.cxx index c17a2e365072..a528348ee843 100644 --- a/framework/source/loadenv/loadenv.cxx +++ b/framework/source/loadenv/loadenv.cxx @@ -999,7 +999,7 @@ bool LoadEnv::impl_furtherDocsAllowed() } bool LoadEnv::impl_loadContent() - throw(LoadEnvException, css::uno::RuntimeException, beans::IllegalTypeException) + throw(LoadEnvException, css::uno::RuntimeException, beans::IllegalTypeException, std::exception) { // SAFE -> ----------------------------------- osl::ClearableMutexGuard aWriteLock(m_mutex); |