You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by as...@apache.org on 2011/03/21 12:32:59 UTC

svn commit: r1083739 - in /cxf/branches/2.3.x-fixes: ./ common/common/src/main/java/org/apache/cxf/common/util/ClassHelper.java

Author: asoldano
Date: Mon Mar 21 11:32:58 2011
New Revision: 1083739

URL: http://svn.apache.org/viewvc?rev=1083739&view=rev
Log:
Merged revisions 1083736 via svnmerge from 
https://svn.apache.org/repos/asf/cxf/trunk

........
  r1083736 | asoldano | 2011-03-21 12:29:11 +0100 (Mon, 21 Mar 2011) | 2 lines
  
  [CXF-3407] Catch Throwable instead of Exception required for trapping NCDF errors when Spring not available
........

Modified:
    cxf/branches/2.3.x-fixes/   (props changed)
    cxf/branches/2.3.x-fixes/common/common/src/main/java/org/apache/cxf/common/util/ClassHelper.java

Propchange: cxf/branches/2.3.x-fixes/
------------------------------------------------------------------------------
    svn:mergeinfo = /cxf/trunk:1083736

Propchange: cxf/branches/2.3.x-fixes/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.

Modified: cxf/branches/2.3.x-fixes/common/common/src/main/java/org/apache/cxf/common/util/ClassHelper.java
URL: http://svn.apache.org/viewvc/cxf/branches/2.3.x-fixes/common/common/src/main/java/org/apache/cxf/common/util/ClassHelper.java?rev=1083739&r1=1083738&r2=1083739&view=diff
==============================================================================
--- cxf/branches/2.3.x-fixes/common/common/src/main/java/org/apache/cxf/common/util/ClassHelper.java (original)
+++ cxf/branches/2.3.x-fixes/common/common/src/main/java/org/apache/cxf/common/util/ClassHelper.java Mon Mar 21 11:32:58 2011
@@ -28,7 +28,7 @@ public class ClassHelper {
         ClassHelper theHelper = null;
         try {
             theHelper = new SpringAopClassHelper();
-        } catch (Exception ex) {
+        } catch (Throwable ex) {
             theHelper = new ClassHelper();
         }
         HELPER = theHelper;