You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by ia...@apache.org on 2004/08/18 22:32:34 UTC

cvs commit: ws-axis/java/src/org/apache/axis/soap SOAPConnectionImpl.java

ias         2004/08/18 13:32:33

  Modified:    java/src/org/apache/axis/soap SOAPConnectionImpl.java
  Log:
  Remove catch (java.rmi.RemoteException) because it's unreachable.
  
  Revision  Changes    Path
  1.21      +0 -2      ws-axis/java/src/org/apache/axis/soap/SOAPConnectionImpl.java
  
  Index: SOAPConnectionImpl.java
  ===================================================================
  RCS file: /home/cvs/ws-axis/java/src/org/apache/axis/soap/SOAPConnectionImpl.java,v
  retrieving revision 1.20
  retrieving revision 1.21
  diff -u -r1.20 -r1.21
  --- SOAPConnectionImpl.java	27 Jun 2004 03:15:08 -0000	1.20
  +++ SOAPConnectionImpl.java	18 Aug 2004 20:32:33 -0000	1.21
  @@ -93,8 +93,6 @@
               throw new SOAPException(mue);
           } catch (org.apache.axis.AxisFault af){
               throw new SOAPException(af);
  -        } catch (java.rmi.RemoteException re){
  -            throw new SOAPException(re);
           }
       }