User: starksm 
  Date: 01/06/21 17:33:32

  Modified:    src/main/javax/transaction SystemException.java
  Log:
  Add the missing public int errorCode ivar so that the serialVersionUID
  is consistent with that of the 1.3 RI j2ee.jar
  
  Revision  Changes    Path
  1.2       +3 -1      jboss-j2ee/src/main/javax/transaction/SystemException.java
  
  Index: SystemException.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-j2ee/src/main/javax/transaction/SystemException.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- SystemException.java      2001/03/31 01:12:29     1.1
  +++ SystemException.java      2001/06/22 00:33:32     1.2
  @@ -10,10 +10,11 @@
   it has encountered an unexpected error condition that prevents future
   transaction services from proceeding. 
   
  -@version $Revision: 1.1 $
  +@version $Revision: 1.2 $
   */
   public class SystemException extends Exception
   {
  +    public int errorCode;
   
       /** Creates new <code>SystemException</code> without detail message.
       */
  @@ -34,5 +35,6 @@
       */
       public SystemException(int errcode)
       {
  +        this.errorCode = errcode;
       }
   }
  
  
  

_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to