[Webfunds-commits] java/webfunds/sox Crypto.java
Jeroen C. van Gelderen
gelderen@cypherpunks.ai
Mon, 4 Sep 2000 19:25:12 -0400 (AST)
gelderen 00/09/04 19:25:12
Modified: webfunds/sox Crypto.java
Log:
Add e.printStackTrace().
Revision Changes Path
1.51 +3 -2 java/webfunds/sox/Crypto.java
Index: Crypto.java
===================================================================
RCS file: /home/webfunds/cvsroot/java/webfunds/sox/Crypto.java,v
retrieving revision 1.50
retrieving revision 1.51
diff -u -r1.50 -r1.51
--- Crypto.java 2000/09/04 23:16:59 1.50
+++ Crypto.java 2000/09/04 23:25:11 1.51
@@ -1,4 +1,4 @@
-/* $Id: Crypto.java,v 1.50 2000/09/04 23:16:59 gelderen Exp $
+/* $Id: Crypto.java,v 1.51 2000/09/04 23:25:11 gelderen Exp $
*
* Copyright (c) Systemics Inc. 1995-2000 on behalf of
* The WebFunds Development Team. All Rights Reserved.
@@ -60,7 +60,7 @@
*
* Centralized crypto methods. Currently being overhauled.
*
- * @version $Revision: 1.50 $
+ * @version $Revision: 1.51 $
*/
public final class Crypto
{
@@ -492,6 +492,7 @@
return new RawSecretKey(CIPHER_ALGORITHM, key);
} catch(Exception e) {
+ e.printStackTrace();
throw new ProviderException("NY");
}
}