diff options
author | Bayram Çiçek <mail@bayramcicek.com.tr> | 2021-01-10 21:47:43 +0000 |
---|---|---|
committer | Michael Stahl <michael.stahl@allotropia.de> | 2021-01-12 19:24:51 +0100 |
commit | 32676270d194b68d7dd811511feb0903876b5c06 (patch) | |
tree | bca2290ed287c583e3390e71d39c5b73df584969 /sfx2 | |
parent | 694f4e560c8a710e69268845575bbecfb5e23f76 (diff) |
tdf#42982: Improve UNO API error reporting
Change-Id: I78c6fed4e94f1ebfc772db4dec9955da7230bc3f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/109071
Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
Tested-by: Jenkins
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/doc/doctemplateslocal.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/doc/doctemplateslocal.cxx b/sfx2/source/doc/doctemplateslocal.cxx index d7c24934f89a..e72b74eb8efe 100644 --- a/sfx2/source/doc/doctemplateslocal.cxx +++ b/sfx2/source/doc/doctemplateslocal.cxx @@ -122,7 +122,7 @@ DocTemplLocaleHelper::~DocTemplLocaleHelper() std::vector< beans::StringPair > const & DocTemplLocaleHelper::GetParsingResult() const { if ( !m_aElementsSeq.empty() ) - throw uno::RuntimeException(); // the parsing has still not finished! + throw uno::RuntimeException("The parsing has still not finished!"); return m_aResultSeq; } |