summaryrefslogtreecommitdiff
path: root/extensions/source/bibliography/datman.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/source/bibliography/datman.cxx')
-rw-r--r--extensions/source/bibliography/datman.cxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/extensions/source/bibliography/datman.cxx b/extensions/source/bibliography/datman.cxx
index 8f456b889181..af0430e09352 100644
--- a/extensions/source/bibliography/datman.cxx
+++ b/extensions/source/bibliography/datman.cxx
@@ -174,9 +174,10 @@ static Reference< XNameAccess > getColumns(const Reference< XForm > & _rxForm)
if (xSupplyCols.is())
xReturn = xSupplyCols->getColumns();
}
- catch (const Exception& e)
+ catch (const Exception&)
{
- SAL_WARN( "extensions.biblio", "::getColumns : caught an exception. " << e);
+ css::uno::Any ex( cppu::getCaughtException() );
+ SAL_WARN( "extensions.biblio", "::getColumns : caught an exception. " << exceptionToString(ex));
}
}