summaryrefslogtreecommitdiff
path: root/filter/source/xsltfilter/XSLTFilter.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'filter/source/xsltfilter/XSLTFilter.cxx')
-rw-r--r--filter/source/xsltfilter/XSLTFilter.cxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/filter/source/xsltfilter/XSLTFilter.cxx b/filter/source/xsltfilter/XSLTFilter.cxx
index 3e5164e7af4d..bade0bdbac1a 100644
--- a/filter/source/xsltfilter/XSLTFilter.cxx
+++ b/filter/source/xsltfilter/XSLTFilter.cxx
@@ -28,6 +28,7 @@
#include <osl/conditn.hxx>
#include <rtl/strbuf.hxx>
#include <tools/urlobj.hxx>
+#include <tools/diagnose_ex.h>
#include <sal/log.hxx>
#include <comphelper/interaction.hxx>
@@ -400,10 +401,11 @@ namespace XSLT
m_tcontrol->terminate();
return !m_bError;
}
- catch( const Exception& exc)
+ catch( const Exception& )
{
+ css::uno::Any ex( cppu::getCaughtException() );
// something went wrong
- SAL_WARN("filter.xslt", exc);
+ SAL_WARN("filter.xslt", exceptionToString(ex));
return false;
}
}