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;


Reply via email to