You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by se...@apache.org on 2013/11/15 14:26:43 UTC

svn commit: r1542260 - /cxf/trunk/core/src/main/java/org/apache/cxf/interceptor/ServiceInvokerInterceptor.java

Author: sergeyb
Date: Fri Nov 15 13:26:43 2013
New Revision: 1542260

URL: http://svn.apache.org/r1542260
Log:
[CXF-5373] Removing the temp Exception block added to ServiceInvokerInterceptor

Modified:
    cxf/trunk/core/src/main/java/org/apache/cxf/interceptor/ServiceInvokerInterceptor.java

Modified: cxf/trunk/core/src/main/java/org/apache/cxf/interceptor/ServiceInvokerInterceptor.java
URL: http://svn.apache.org/viewvc/cxf/trunk/core/src/main/java/org/apache/cxf/interceptor/ServiceInvokerInterceptor.java?rev=1542260&r1=1542259&r2=1542260&view=diff
==============================================================================
--- cxf/trunk/core/src/main/java/org/apache/cxf/interceptor/ServiceInvokerInterceptor.java (original)
+++ cxf/trunk/core/src/main/java/org/apache/cxf/interceptor/ServiceInvokerInterceptor.java Fri Nov 15 13:26:43 2013
@@ -138,14 +138,7 @@ public class ServiceInvokerInterceptor e
                 } else {
                     throw new Fault(e.getCause());
                 }
-            } catch (Exception e) {
-                if (e.getCause() instanceof RuntimeException) {
-                    throw (RuntimeException)e.getCause();
-                } else {
-                    throw new Fault(e.getCause());
-                }
             }
-            
         }
     }