You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by ff...@apache.org on 2009/03/18 10:06:41 UTC

svn commit: r755519 - in /cxf/branches/2.1.x-fixes: ./ rt/transports/jbi/src/main/java/org/apache/cxf/transport/jbi/JBIConduitOutputStream.java

Author: ffang
Date: Wed Mar 18 09:06:40 2009
New Revision: 755519

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

........
  r755498 | ffang | 2009-03-18 15:18:03 +0800 (Wed, 18 Mar 2009) | 1 line
  
  [CXF-2115]refactor JBIConduitOutputStream exception handle
........

Modified:
    cxf/branches/2.1.x-fixes/   (props changed)
    cxf/branches/2.1.x-fixes/rt/transports/jbi/src/main/java/org/apache/cxf/transport/jbi/JBIConduitOutputStream.java

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

Modified: cxf/branches/2.1.x-fixes/rt/transports/jbi/src/main/java/org/apache/cxf/transport/jbi/JBIConduitOutputStream.java
URL: http://svn.apache.org/viewvc/cxf/branches/2.1.x-fixes/rt/transports/jbi/src/main/java/org/apache/cxf/transport/jbi/JBIConduitOutputStream.java?rev=755519&r1=755518&r2=755519&view=diff
==============================================================================
--- cxf/branches/2.1.x-fixes/rt/transports/jbi/src/main/java/org/apache/cxf/transport/jbi/JBIConduitOutputStream.java (original)
+++ cxf/branches/2.1.x-fixes/rt/transports/jbi/src/main/java/org/apache/cxf/transport/jbi/JBIConduitOutputStream.java Wed Mar 18 09:06:40 2009
@@ -164,8 +164,7 @@
         } catch (IOException e) {
             throw e;
         } catch (Exception e) {
-            e.printStackTrace();
-            new IOException(e.toString());
+            throw new RuntimeException(e.toString());
         }
     }