summaryrefslogtreecommitdiff
path: root/cui
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2012-11-26 17:35:15 +0100
committerStephan Bergmann <sbergman@redhat.com>2012-11-26 17:35:15 +0100
commit3bdd04fc0466154e16243cf233fb2bb3ad4043a0 (patch)
tree84c27cf5eaa0c1c497aafc2ea543282f756bd1f7 /cui
parent185fe1de1f437ec2a60cbab3f30bd505e9d14d36 (diff)
Improve error reporting
Change-Id: I46e97b59716e5d716ac5d76a0bd6af5eea05a57f
Diffstat (limited to 'cui')
-rw-r--r--cui/source/options/certpath.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/cui/source/options/certpath.cxx b/cui/source/options/certpath.cxx
index 95709aceff65..e5672603b681 100644
--- a/cui/source/options/certpath.cxx
+++ b/cui/source/options/certpath.cxx
@@ -253,9 +253,9 @@ IMPL_LINK_NOARG(CertPathDialog, AddHdl_Impl)
AddCertPath(m_sManual, aPath);
}
}
- catch (const uno::Exception&)
+ catch (uno::Exception & e)
{
- SAL_WARN( "cui.options", "CertPathDialog::AddHdl_Impl(): caught exception" );
+ SAL_WARN("cui.options", "caught UNO exception: " << e.Message);
}
return 0;