diff options
-rw-r--r-- | comphelper/source/container/enumerablemap.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/comphelper/source/container/enumerablemap.cxx b/comphelper/source/container/enumerablemap.cxx index dd42518c5faf..3fda3d5f67ff 100644 --- a/comphelper/source/container/enumerablemap.cxx +++ b/comphelper/source/container/enumerablemap.cxx @@ -370,7 +370,7 @@ namespace comphelper { OSL_PRECOND( m_aData.m_pValues && m_aData.m_pValues->empty(), "EnumerableMap::impl_initValues_throw: illegal call!" ); if (!m_aData.m_pValues || !m_aData.m_pValues->empty()){ - throw IllegalTypeException("EnumerableMap m_aData container is invalid or not empty.", *this); + throw RuntimeException("EnumerableMap m_aData container is invalid or not empty.", *this); } for (auto& mapping : _initialValues) { |