Kaydet (Commit) 6a9ee33a authored tarafından Lionel Elie Mamane's avatar Lionel Elie Mamane

catch exceptions by (const) reference

Change-Id: Ie42b169437c89d0d94f6749bee21301fa44b98cf
üst d43d7565
...@@ -652,11 +652,11 @@ sal_Bool java_sql_Statement_Base::convertFastPropertyValue( ...@@ -652,11 +652,11 @@ sal_Bool java_sql_Statement_Base::convertFastPropertyValue(
; ;
} }
} }
catch(::com::sun::star::lang::IllegalArgumentException) catch(const ::com::sun::star::lang::IllegalArgumentException&)
{ {
throw; throw;
} }
catch(::com::sun::star::uno::Exception) catch(const ::com::sun::star::uno::Exception&)
{ {
DBG_UNHANDLED_EXCEPTION(); DBG_UNHANDLED_EXCEPTION();
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment