diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-10-17 09:19:12 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-10-17 15:19:41 +0100 |
commit | 751570534fb5605a26b0d682bf0ad606d4184af1 (patch) | |
tree | ec39434d8310cbfd4fb24813751f094469cfe714 /ucb/source | |
parent | 9ab85c298bee6e702dd78e7746bafde92419081f (diff) |
coverity#1247636 Uncaught exception
Change-Id: If9d635b7345683da0bf6ef7c7b0ffba0450f5dbd
Diffstat (limited to 'ucb/source')
-rw-r--r-- | ucb/source/ucp/gio/gio_content.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ucb/source/ucp/gio/gio_content.cxx b/ucb/source/ucp/gio/gio_content.cxx index 96dbd72e016f..2eb2219183eb 100644 --- a/ucb/source/ucp/gio/gio_content.cxx +++ b/ucb/source/ucp/gio/gio_content.cxx @@ -33,7 +33,7 @@ #include <com/sun/star/io/XActiveDataSink.hpp> #include <com/sun/star/io/XOutputStream.hpp> #include <com/sun/star/lang/IllegalAccessException.hpp> -#include <com/sun/star/lang/WrappedTargetException.hpp> +#include <com/sun/star/lang/WrappedTargetRuntimeException.hpp> #include <com/sun/star/ucb/ContentInfoAttribute.hpp> #include <com/sun/star/ucb/InsertCommandArgument.hpp> #include <com/sun/star/ucb/InteractiveBadTransferURLException.hpp> @@ -303,7 +303,7 @@ void convertToIOException(GError *pError, const uno::Reference< uno::XInterface catch (const uno::Exception& e) { css::uno::Any a(cppu::getCaughtException()); - throw css::lang::WrappedTargetException( + throw css::lang::WrappedTargetRuntimeException( "wrapped Exception " + e.Message, css::uno::Reference<css::uno::XInterface>(), a); } |