diff options
author | Caolán McNamara <caolanm@redhat.com> | 2017-11-30 13:47:17 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2017-11-30 15:15:01 +0100 |
commit | bd90805c387d46ca35a7dbfe032ed8e8d07d2e85 (patch) | |
tree | d18cffe092336932cbf02da9dfbbf17fd3aecc24 /sd | |
parent | bf59f89d8818f62b03acaf7820e1a9560a388252 (diff) |
catch IllegalArgumentException too
Change-Id: Ib34bb87d94f8cc6d381e65ffbfe186e8d76d4e83
Reviewed-on: https://gerrit.libreoffice.org/45587
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/filter/xml/sdxmlwrp.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sd/source/filter/xml/sdxmlwrp.cxx b/sd/source/filter/xml/sdxmlwrp.cxx index 02b3e2028d2f..3293e662a69d 100644 --- a/sd/source/filter/xml/sdxmlwrp.cxx +++ b/sd/source/filter/xml/sdxmlwrp.cxx @@ -1096,6 +1096,9 @@ extern "C" SAL_DLLPUBLIC_EXPORT bool SAL_CALL TestImportPPTX(SvStream &rStream) catch (const css::xml::sax::SAXException&) { } + catch (const css::lang::IllegalArgumentException&) + { + } catch (const css::lang::WrappedTargetRuntimeException&) { } |