From 17ad15b70a1c1362952655e4610e4c8e35a6a1bd Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Tue, 26 Jul 2011 23:02:25 +0100 Subject: catch by const reference --- dbaccess/source/core/dataaccess/databasecontext.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dbaccess/source/core/dataaccess/databasecontext.cxx b/dbaccess/source/core/dataaccess/databasecontext.cxx index 146152594..f0ba9e6c6 100644 --- a/dbaccess/source/core/dataaccess/databasecontext.cxx +++ b/dbaccess/source/core/dataaccess/databasecontext.cxx @@ -637,19 +637,19 @@ Any ODatabaseContext::getByName(const rtl::OUString& _rName) throw( NoSuchElemen xExistent = loadObjectFromURL( _rName, sURL ); return makeAny( xExistent ); } - catch (NoSuchElementException&) + catch (const NoSuchElementException&) { // let these exceptions through throw; } - catch (WrappedTargetException&) + catch (const WrappedTargetException&) { // let these exceptions through throw; } - catch (RuntimeException&) + catch (const RuntimeException&) { // let these exceptions through throw; } - catch (Exception& e) + catch (const Exception&) { // exceptions other than the speciafied ones -> wrap Any aError = ::cppu::getCaughtException(); throw WrappedTargetException(_rName, *this, aError ); -- cgit v1.2.3