summaryrefslogtreecommitdiff
path: root/package
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-06-12 09:31:50 +0200
committerNoel Grandin <noel@peralex.com>2013-06-12 10:45:54 +0200
commita591811d0883ffaf316209c86fe5a798532e25f6 (patch)
tree985dcb95433e487a6f93a1f78f148cf7b5808b7c /package
parent2d64de59c2109e378e4d38d6cad2510226c05435 (diff)
Fix exception specification for ZipFileAccess::createWithURL
Broken during my conversion to new-style UNO in commit 28e3aff576f06b0b02c7232da5d723e865b3c7ed. Also revert mmeeks workaround in commit c0b78901dba033ed112a023a787575ae54ef877d. Change-Id: I1f711bbe19556f1bde7699295ca4f56cff54ddb9
Diffstat (limited to 'package')
-rw-r--r--package/source/zippackage/zipfileaccess.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/source/zippackage/zipfileaccess.cxx b/package/source/zippackage/zipfileaccess.cxx
index 4365482808c0..5f30ee9b7233 100644
--- a/package/source/zippackage/zipfileaccess.cxx
+++ b/package/source/zippackage/zipfileaccess.cxx
@@ -172,7 +172,7 @@ void SAL_CALL OZipFileAccess::initialize( const uno::Sequence< uno::Any >& aArgu
throw lang::DisposedException(OSL_LOG_PREFIX, uno::Reference< uno::XInterface >() );
if ( m_pZipFile )
- throw uno::Exception(OSL_LOG_PREFIX, uno::Reference< uno::XInterface >() ); // initialization is allowed only one time
+ throw uno::RuntimeException(OSL_LOG_PREFIX, uno::Reference< uno::XInterface >() ); // initialization is allowed only one time
if ( !aArguments.getLength() )
throw lang::IllegalArgumentException(OSL_LOG_PREFIX, uno::Reference< uno::XInterface >(), 1 );