summaryrefslogtreecommitdiff
path: root/framework
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-11-19 18:30:46 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-11-19 18:30:46 +0100
commit30bf5787e1f996b4dd690e8bf8d49133ad1e9bba (patch)
tree534f8f017d5409b3f030b8aec6de2ff4cea28ab0 /framework
parent6f58f34fc0cd74c198b9474d074529bc4c9d7e02 (diff)
Revert "cid#706553 Uncaught exception"
This reverts commit 0a87f4ad1a45aaaaad885a1418d0d6bed21db456, now that fced31697bcc2a2a4da34d804582002de0320302 "comphelper::SequenceAsHashMap: throw IllegalArgumentException" made the underlying problem go away. Conflicts: framework/source/inc/loadenv/loadenv.hxx framework/source/loadenv/loadenv.cxx Change-Id: Id2f468bf0f24f5a8a7a0e6eb113ccfedd35b03cc
Diffstat (limited to 'framework')
-rw-r--r--framework/source/inc/loadenv/loadenv.hxx3
-rw-r--r--framework/source/loadenv/loadenv.cxx2
2 files changed, 2 insertions, 3 deletions
diff --git a/framework/source/inc/loadenv/loadenv.hxx b/framework/source/inc/loadenv/loadenv.hxx
index cbc11dc8078b..3bf66fff7a67 100644
--- a/framework/source/inc/loadenv/loadenv.hxx
+++ b/framework/source/inc/loadenv/loadenv.hxx
@@ -22,7 +22,6 @@
#include <loadenv/loadenvexception.hxx>
#include <loadenv/actionlockguard.hxx>
-#include <com/sun/star/beans/IllegalTypeException.hpp>
#include <com/sun/star/lang/IllegalArgumentException.hpp>
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
#include <com/sun/star/frame/XComponentLoader.hpp>
@@ -413,7 +412,7 @@ private:
the whole runtime can't be used any longer.
*/
void impl_detectTypeAndFilter()
- throw(LoadEnvException, css::uno::RuntimeException, css::beans::IllegalTypeException, std::exception);
+ throw(LoadEnvException, css::uno::RuntimeException, std::exception);
/** @short tries to ask user for it's filter decision in case
normal detection failed.
diff --git a/framework/source/loadenv/loadenv.cxx b/framework/source/loadenv/loadenv.cxx
index 965d6d4a0887..cfb474af78ec 100644
--- a/framework/source/loadenv/loadenv.cxx
+++ b/framework/source/loadenv/loadenv.cxx
@@ -735,7 +735,7 @@ bool queryOrcusTypeAndFilter(const uno::Sequence<beans::PropertyValue>&, OUStrin
}
void LoadEnv::impl_detectTypeAndFilter()
- throw(LoadEnvException, css::uno::RuntimeException, beans::IllegalTypeException, std::exception)
+ throw(LoadEnvException, css::uno::RuntimeException, std::exception)
{
static const char TYPEPROP_PREFERREDFILTER[] = "PreferredFilter";
static const char FILTERPROP_FLAGS [] = "Flags";