diff options
author | Verne-Lai <verne@ossii.com.tw> | 2021-10-01 11:09:59 +0800 |
---|---|---|
committer | Michael Stahl <michael.stahl@allotropia.de> | 2021-10-04 11:21:34 +0200 |
commit | dad5b69b229047e0bba921f185dddd6ce26183a5 (patch) | |
tree | f40e258cccc2c01014469bb1a527d4f1befb7e49 /vbahelper | |
parent | af291666b3316aba2b35d3b8358f4cd42c553587 (diff) |
[tdf#42982]Improve runtimeException's Message
Change-Id: Ieb1bc302c2c1093561082704e26e3ff3b648db91
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/122902
Tested-by: Jenkins
Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
Diffstat (limited to 'vbahelper')
-rw-r--r-- | vbahelper/source/vbahelper/vbaeventshelperbase.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vbahelper/source/vbahelper/vbaeventshelperbase.cxx b/vbahelper/source/vbahelper/vbaeventshelperbase.cxx index 1396c93cd616..8c8515d8fa1c 100644 --- a/vbahelper/source/vbahelper/vbaeventshelperbase.cxx +++ b/vbahelper/source/vbahelper/vbaeventshelperbase.cxx @@ -277,7 +277,7 @@ OUString VbaEventsHelperBase::getEventHandlerPath( const EventHandlerInfo& rInfo break; default: - throw uno::RuntimeException(); // unsupported module type + throw uno::RuntimeException("This module type is unsupported"); // unsupported module type } /* Performance improvement: Check the list of existing event handlers |