summaryrefslogtreecommitdiff
path: root/filter
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-02-07 14:07:15 +0000
committerCaolán McNamara <caolanm@redhat.com>2015-02-07 14:27:13 +0000
commitac6af669f47655a127eff3d3268437e556d47b46 (patch)
treeb1e831f446568bcc6be4d3b24d069424b7597462 /filter
parentd3aa72da441a5eebdc06107b35222b7b126b9a13 (diff)
coverity#1267690 Uncaught exception
Change-Id: I38edf3f78d73c004cb85edd84a22dddc9d870f37
Diffstat (limited to 'filter')
-rw-r--r--filter/source/config/cache/filtercache.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/filter/source/config/cache/filtercache.cxx b/filter/source/config/cache/filtercache.cxx
index eb802f0b9317..18115e4a7e34 100644
--- a/filter/source/config/cache/filtercache.cxx
+++ b/filter/source/config/cache/filtercache.cxx
@@ -1637,7 +1637,7 @@ CacheItem FilterCache::impl_loadItem(const css::uno::Reference< css::container::
if (!(aVal >>= xItem) || !xItem.is())
{
OUString sMsg("found corrupted item \"" + sItem + "\".");
- throw css::uno::Exception(sMsg, css::uno::Reference< css::uno::XInterface >());
+ throw css::uno::RuntimeException(sMsg, css::uno::Reference< css::uno::XInterface >());
}
#ifdef WORKAROUND_EXCEPTION_PROBLEM
}