diff options
author | Muthu Subramanian <sumuthu@suse.com> | 2012-09-13 19:45:48 +0530 |
---|---|---|
committer | Muthu Subramanian <sumuthu@suse.com> | 2012-09-13 19:49:53 +0530 |
commit | 9748670e040e993d66eb777225772e62d0ca2b4e (patch) | |
tree | 4a392a6daef95d6a7e1371d1f0c6f6d0cd01c91d | |
parent | a6c18caef16b9eb0742c2a2cbb724e66bb31c3c3 (diff) |
fdo#54750: Handle any kind of exception (ooxml import).
This is very similar to fdo#54609 - so changed it to
throw a generic Exception.
-rw-r--r-- | oox/source/docprop/ooxmldocpropimport.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/oox/source/docprop/ooxmldocpropimport.cxx b/oox/source/docprop/ooxmldocpropimport.cxx index 9e513a2e7175..e620b0f4f3fc 100644 --- a/oox/source/docprop/ooxmldocpropimport.cxx +++ b/oox/source/docprop/ooxmldocpropimport.cxx @@ -68,7 +68,7 @@ Reference< XInterface > SAL_CALL DocumentPropertiesImport_createInstance( const namespace { -Sequence< InputSource > lclGetRelatedStreams( const Reference< XStorage >& rxStorage, const OUString& rStreamType ) throw (RuntimeException, IllegalArgumentException) +Sequence< InputSource > lclGetRelatedStreams( const Reference< XStorage >& rxStorage, const OUString& rStreamType ) throw (Exception) { Reference< XRelationshipAccess > xRelation( rxStorage, UNO_QUERY_THROW ); Reference< XHierarchicalStorageAccess > xHierarchy( rxStorage, UNO_QUERY_THROW ); |