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 12:02:18 UTC

svn commit: r1516798 - in /openoffice/branches/AOO401: ./ main/desktop/source/app/app.cxx

Author: orw
Date: Fri Aug 23 10:02:17 2013
New Revision: 1516798

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

        cherry-picked from trunk


Modified:
    openoffice/branches/AOO401/   (props changed)
    openoffice/branches/AOO401/main/desktop/source/app/app.cxx

Propchange: openoffice/branches/AOO401/
------------------------------------------------------------------------------
  Merged /openoffice/trunk:r1516789

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