You are viewing a plain text version of this content. The canonical link for it is here.
Posted to wsrp4j-dev@portals.apache.org by jm...@apache.org on 2005/04/11 23:20:55 UTC

cvs commit: ws-wsrp4j/src/org/apache/wsrp4j/exception WSRPException.java

jmacna      2005/04/11 14:20:55

  Modified:    src/org/apache/wsrp4j/exception WSRPException.java
  Log:
  Fixes WSRP4J-42: exception.WSRPException loses the cause of the problem in standard exception processing
  
  Revision  Changes    Path
  1.4       +1 -1      ws-wsrp4j/src/org/apache/wsrp4j/exception/WSRPException.java
  
  Index: WSRPException.java
  ===================================================================
  RCS file: /home/cvs/ws-wsrp4j/src/org/apache/wsrp4j/exception/WSRPException.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- WSRPException.java	9 Mar 2004 21:42:14 -0000	1.3
  +++ WSRPException.java	11 Apr 2005 21:20:55 -0000	1.4
  @@ -70,7 +70,7 @@
       public WSRPException(int errorCode, Throwable t)
       {
           //String message = Messages.get(errorCode);
  -        super(Messages.get(errorCode));
  +        super(Messages.get(errorCode),t);
           errCode = errorCode;
           nestedThrowable = t;
       }