diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-07-26 23:02:25 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-07-26 23:02:25 +0100 |
commit | 17ad15b70a1c1362952655e4610e4c8e35a6a1bd (patch) | |
tree | 6300190466bd660556324eff7197fa32476c4f59 | |
parent | 2866c2895cc168332d19d26aada9abb0324676de (diff) |
catch by const reference
-rw-r--r-- | dbaccess/source/core/dataaccess/databasecontext.cxx | 8 |
1 files 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 ); |