You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by ff...@apache.org on 2013/10/11 14:36:40 UTC

svn commit: r1531273 - /servicemix/smx4/features/branches/features-4.5.x/cxf/cxf-transport-nmr/src/main/java/org/apache/servicemix/cxf/transport/nmr/NMRConduitOutputStream.java

Author: ffang
Date: Fri Oct 11 12:36:40 2013
New Revision: 1531273

URL: http://svn.apache.org/r1531273
Log:
[SMX4-1585]org.apache.servicemix.cxf.transport.nmr.NMRConduitOutputStream.commitOutputMessage() does not propagate exception.

Modified:
    servicemix/smx4/features/branches/features-4.5.x/cxf/cxf-transport-nmr/src/main/java/org/apache/servicemix/cxf/transport/nmr/NMRConduitOutputStream.java

Modified: servicemix/smx4/features/branches/features-4.5.x/cxf/cxf-transport-nmr/src/main/java/org/apache/servicemix/cxf/transport/nmr/NMRConduitOutputStream.java
URL: http://svn.apache.org/viewvc/servicemix/smx4/features/branches/features-4.5.x/cxf/cxf-transport-nmr/src/main/java/org/apache/servicemix/cxf/transport/nmr/NMRConduitOutputStream.java?rev=1531273&r1=1531272&r2=1531273&view=diff
==============================================================================
--- servicemix/smx4/features/branches/features-4.5.x/cxf/cxf-transport-nmr/src/main/java/org/apache/servicemix/cxf/transport/nmr/NMRConduitOutputStream.java (original)
+++ servicemix/smx4/features/branches/features-4.5.x/cxf/cxf-transport-nmr/src/main/java/org/apache/servicemix/cxf/transport/nmr/NMRConduitOutputStream.java Fri Oct 11 12:36:40 2013
@@ -294,7 +294,7 @@ public class NMRConduitOutputStream exte
             throw e;
         } catch (Exception e) {
             e.printStackTrace();
-            new IOException(e.toString());
+            throw new IOException(e.toString());
         }
 
     }