summaryrefslogtreecommitdiff
path: root/ios
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2018-09-27 17:56:46 +0200
committerMichael Meeks <michael.meeks@collabora.com>2018-10-30 17:00:45 +0000
commita14960770087032f3818c9dffea13993c94e79c6 (patch)
treebd6f8cfa22fc408b81547926d39dcd10f8c08b1f /ios
parent1ba33db69fa72c79b806e2d418d91ce1ae7612b9 (diff)
Need to handle css::uno::RuntimeException too now
Change-Id: Idedcaddeab80fcfdc3d5a4f2852712827a98e848 (cherry picked from commit 45786711ec54e738d868ceabdc1a9f5bccffec1d) Signed-off-by: Michael Meeks <michael.meeks@collabora.com>
Diffstat (limited to 'ios')
-rw-r--r--ios/source/ios.cxx1
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);
}