[Libreoffice-commits] core.git: desktop/source

Stephan Bergmann sbergman at redhat.com
Fri Nov 8 18:28:40 CET 2013


 desktop/source/deployment/manager/dp_extensionmanager.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit c69ed33628ec0b7abf6296539cf280d6c4265930
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Fri Nov 8 18:27:44 2013 +0100

    Don't unnecessarily wrap RuntimeExceptions
    
    (and IllegalArgumentException is a RuntimeException now)
    
    Change-Id: Ic18f11ff7675878c7f6b5e9ee52453bbb9f1e787

diff --git a/desktop/source/deployment/manager/dp_extensionmanager.cxx b/desktop/source/deployment/manager/dp_extensionmanager.cxx
index 5457a32..49ee470 100644
--- a/desktop/source/deployment/manager/dp_extensionmanager.cxx
+++ b/desktop/source/deployment/manager/dp_extensionmanager.cxx
@@ -351,7 +351,7 @@ ExtensionManager::getExtensionsWithSameIdentifier(
     {
         throw;
     }
-    catch (const lang::IllegalArgumentException &)
+    catch (css::uno::RuntimeException &)
     {
         throw;
     }


More information about the Libreoffice-commits mailing list