summaryrefslogtreecommitdiff
path: root/xmlhelp/source/cxxhelp/provider/resultsetforquery.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'xmlhelp/source/cxxhelp/provider/resultsetforquery.cxx')
-rw-r--r--xmlhelp/source/cxxhelp/provider/resultsetforquery.cxx9
1 files changed, 8 insertions, 1 deletions
diff --git a/xmlhelp/source/cxxhelp/provider/resultsetforquery.cxx b/xmlhelp/source/cxxhelp/provider/resultsetforquery.cxx
index 6ce46a888ff0..1241fb659266 100644
--- a/xmlhelp/source/cxxhelp/provider/resultsetforquery.cxx
+++ b/xmlhelp/source/cxxhelp/provider/resultsetforquery.cxx
@@ -35,6 +35,8 @@
#include <l10ntools/HelpSearch.hxx>
+#include <rtl/oustringostreaminserter.hxx>
+
#include <algorithm>
#include <set>
@@ -247,8 +249,13 @@ ResultSetForQuery::ResultSetForQuery( const uno::Reference< lang::XMultiServiceF
aIndexFolderResultVectorVector.push_back( pIndexFolderHitItemVector );
aIndexFolderResultVector.clear();
}
- catch( const Exception& )
+ catch (const Exception &e)
+ {
+ SAL_WARN("xmlhelp", "Exception: " << e.Message);
+ }
+ catch (CLuceneError &e)
{
+ SAL_WARN("xmlhelp", "CLuceneError: " << e.what());
}
++iDir;