diff options
author | Tor Lillqvist <tml@collabora.com> | 2018-09-27 17:56:46 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2018-09-27 21:10:12 +0200 |
commit | 45786711ec54e738d868ceabdc1a9f5bccffec1d (patch) | |
tree | 79f9e0f0f2092ecae624d752339a560725a6ec3b /ios | |
parent | dc6dcebda285aac7306992a00533b855ac5b716d (diff) |
Need to handle css::uno::RuntimeException too now
Change-Id: Idedcaddeab80fcfdc3d5a4f2852712827a98e848
Diffstat (limited to 'ios')
-rw-r--r-- | ios/source/ios.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ios/source/ios.cxx b/ios/source/ios.cxx index 60b455d287ee..36aaa245f76d 100644 --- a/ios/source/ios.cxx +++ b/ios/source/ios.cxx @@ -28,6 +28,7 @@ void lo_ios_throwException(css::uno::Any const& aException) assert(aException.getValueTypeClass() == css::uno::TypeClass_EXCEPTION); tryThrow<css::ucb::InteractiveAugmentedIOException>(aException); + tryThrow<css::uno::RuntimeException>(aException); assert(false); } |