You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by or...@apache.org on 2013/08/23 11:42:06 UTC

svn commit: r1516789 - /openoffice/trunk/main/desktop/source/app/app.cxx

Author: orw
Date: Fri Aug 23 09:42:06 2013
New Revision: 1516789

URL: http://svn.apache.org/r1516789
Log:
122976: <installBundledExtensionBlobs()> - handle exceptions thrown by the extension manager


Modified:
    openoffice/trunk/main/desktop/source/app/app.cxx

Modified: openoffice/trunk/main/desktop/source/app/app.cxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/desktop/source/app/app.cxx?rev=1516789&r1=1516788&r2=1516789&view=diff
==============================================================================
--- openoffice/trunk/main/desktop/source/app/app.cxx (original)
+++ openoffice/trunk/main/desktop/source/app/app.cxx Fri Aug 23 09:42:06 2013
@@ -954,6 +954,15 @@ static void installBundledExtensionBlobs
         {}
         catch( css::deployment::DeploymentException&)
         {}
+        catch ( css::ucb::CommandFailedException& )
+        {
+        }
+        catch ( css::ucb::CommandAbortedException& )
+        {
+        }
+        catch ( css::lang::IllegalArgumentException& )
+        {
+        }
     }
 }