From 889dc7bffa02236bf2ad56b382997771f0fcf3c6 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Thu, 15 Aug 2019 15:56:55 +0200 Subject: use more TOOLS_WARN_EXCEPTION Change-Id: Ic21ea11ff106e0732bb8fa600ef39a549d7bda86 Reviewed-on: https://gerrit.libreoffice.org/77569 Tested-by: Jenkins Reviewed-by: Noel Grandin --- xmloff/source/table/XMLTableExport.cxx | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) (limited to 'xmloff/source/table/XMLTableExport.cxx') diff --git a/xmloff/source/table/XMLTableExport.cxx b/xmloff/source/table/XMLTableExport.cxx index 596e94149785..449860ed8656 100644 --- a/xmloff/source/table/XMLTableExport.cxx +++ b/xmloff/source/table/XMLTableExport.cxx @@ -591,8 +591,7 @@ void XMLTableExport::exportTableTemplates() } catch(const Exception&) { - css::uno::Any ex( cppu::getCaughtException() ); - SAL_WARN("xmloff", "XMLTableExport::exportTableTemplates(), export Writer specific attributes, exception caught! " << exceptionToString(ex)); + TOOLS_WARN_EXCEPTION("xmloff", "XMLTableExport::exportTableTemplates(), export Writer specific attributes, exception caught!"); } pElements++; } @@ -649,8 +648,7 @@ void XMLTableExport::exportTableTemplates() } catch(const Exception&) { - css::uno::Any ex( cppu::getCaughtException() ); - SAL_WARN("xmloff", "XMLTableExport::exportTableTemplates(), export Writer specific styles, exception caught!" << exceptionToString(ex)); + TOOLS_WARN_EXCEPTION("xmloff", "XMLTableExport::exportTableTemplates(), export Writer specific styles, exception caught!"); } pElements++; } @@ -658,14 +656,12 @@ void XMLTableExport::exportTableTemplates() } catch(const Exception&) { - css::uno::Any ex( cppu::getCaughtException() ); - SAL_WARN("xmloff", "XMLTableExport::exportTableDesigns(), exception caught while exporting a table design! " << exceptionToString(ex)); + TOOLS_WARN_EXCEPTION("xmloff", "XMLTableExport::exportTableDesigns(), exception caught while exporting a table design!"); } } catch(const Exception&) { - css::uno::Any ex( cppu::getCaughtException() ); - SAL_WARN("xmloff", "XMLTableExport::exportTableDesigns(), exception caught! " << exceptionToString(ex)); + TOOLS_WARN_EXCEPTION("xmloff", "XMLTableExport::exportTableDesigns()"); } } -- cgit