diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2011-12-27 00:12:38 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2011-12-27 10:17:15 +0900 |
commit | c936e5062770ba100c2eddd7889b51d271c6c73c (patch) | |
tree | 7ab2701dce9bfea7ac5b3b319a05a1aeb4a25cad /stoc/source/uriproc | |
parent | 1d55be916472270d23f7d3ff7513dd6df6dc1e46 (diff) |
catch exception by constant reference
Diffstat (limited to 'stoc/source/uriproc')
-rw-r--r-- | stoc/source/uriproc/UriReferenceFactory.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stoc/source/uriproc/UriReferenceFactory.cxx b/stoc/source/uriproc/UriReferenceFactory.cxx index 13709823d903..d06d4018087a 100644 --- a/stoc/source/uriproc/UriReferenceFactory.cxx +++ b/stoc/source/uriproc/UriReferenceFactory.cxx @@ -420,7 +420,7 @@ css::uno::Reference< css::uri::XUriReference > Factory::parse( serviceName, m_context); } catch (css::uno::RuntimeException &) { throw; - } catch (css::uno::Exception & e) { + } catch (const css::uno::Exception & e) { throw css::lang::WrappedTargetRuntimeException( rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("creating service ")) + serviceName, |