You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2009/04/21 17:40:49 UTC

svn commit: r767191 - /cxf/trunk/common/common/src/main/java/org/apache/cxf/common/util/ProxyHelper.java

Author: dkulp
Date: Tue Apr 21 15:40:48 2009
New Revision: 767191

URL: http://svn.apache.org/viewvc?rev=767191&view=rev
Log:
[CXF-2180] Catch throwable so ClassNotFoundException and NoClassDefFoundErrors can both be caught

Modified:
    cxf/trunk/common/common/src/main/java/org/apache/cxf/common/util/ProxyHelper.java

Modified: cxf/trunk/common/common/src/main/java/org/apache/cxf/common/util/ProxyHelper.java
URL: http://svn.apache.org/viewvc/cxf/trunk/common/common/src/main/java/org/apache/cxf/common/util/ProxyHelper.java?rev=767191&r1=767190&r2=767191&view=diff
==============================================================================
--- cxf/trunk/common/common/src/main/java/org/apache/cxf/common/util/ProxyHelper.java (original)
+++ cxf/trunk/common/common/src/main/java/org/apache/cxf/common/util/ProxyHelper.java Tue Apr 21 15:40:48 2009
@@ -31,7 +31,7 @@
         ProxyHelper theHelper = null;
         try {
             theHelper = new CglibProxyHelper();
-        } catch (Exception ex) {
+        } catch (Throwable ex) {
             theHelper = new ProxyHelper();
         }
         HELPER = theHelper;