[Webfunds-commits] java/webfunds/client/sox DepositException.java

Jeroen C. van Gelderen gelderen@cypherpunks.ai
Tue, 20 Jun 2000 16:04:36 -0400 (AST)


gelderen    00/06/20 16:04:36

  Modified:    webfunds/client/sox DepositException.java
  Log:
  Add NO_RECEIPT error code.

Revision  Changes    Path
1.3       +2 -1      java/webfunds/client/sox/DepositException.java

Index: DepositException.java
===================================================================
RCS file: /home/webfunds/cvsroot/java/webfunds/client/sox/DepositException.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- DepositException.java	2000/06/11 19:55:20	1.2
+++ DepositException.java	2000/06/20 20:04:36	1.3
@@ -1,4 +1,4 @@
-/* $Id: DepositException.java,v 1.2 2000/06/11 19:55:20 gelderen Exp $
+/* $Id: DepositException.java,v 1.3 2000/06/20 20:04:36 gelderen Exp $
  *
  * Copyright (c) 2000 Systemics Inc. on behalf of
  * The WebFunds Development Team. All rights reserved.
@@ -10,7 +10,8 @@
 {
     public static final int
         UNKNOWN_ACCOUNT    = 1,
-        INSUFFICIENT_FUNDS = 2;
+        INSUFFICIENT_FUNDS = 2,
+        NO_RECEIPT         = 3;
 
     private int code;