summaryrefslogtreecommitdiff
path: root/include/o3tl/deleter.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/o3tl/deleter.hxx')
-rw-r--r--include/o3tl/deleter.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/o3tl/deleter.hxx b/include/o3tl/deleter.hxx
index 4dce1d005f71..4e90ca5a61f6 100644
--- a/include/o3tl/deleter.hxx
+++ b/include/o3tl/deleter.hxx
@@ -28,9 +28,9 @@ template<typename T> struct default_delete
{
delete p;
}
- catch (const css::uno::Exception& e)
+ catch (const css::uno::Exception&)
{
- SAL_WARN("vcl.app", "Fatal exception: " << e.Message);
+ SAL_WARN("vcl.app", "Fatal exception: " << exceptionToString(ex));
std::terminate();
}
catch (const std::exception& e)