CVS update: talon/src/java/talon

From: cvs@openprivacy.org
Date: Sun Mar 11 2001 - 15:51:20 PST

  • Next message: cvs@openprivacy.org: "CVS update: talon/htdocs"

    Date: Sunday March 11, 19101 @ 15:51
    Author: burton
    CVSWEB Options: -------------------

    Main CVSWeb: http://openprivacy.org/cgi-bin/cvsweb/cvsweb.cgi

    View this module: http://openprivacy.org/cgi-bin/cvsweb/cvsweb.cgi/talon/src/java/talon

    -----------------------------------

    Update of /usr/local/cvs/public/talon/src/java/talon
    In directory giga:/tmp/cvs-serv30427/src/java/talon

    Modified Files:
            TalonException.java
    Log Message:
    adding a simple database connection pool interface

    *****************************************************************
    File: talon/src/java/talon/TalonException.java

    CVSWEB Options: -------------------

    CVSWeb: Annotate this file: http://openprivacy.org/cgi-bin/cvsweb/cvsweb.cgi/talon/src/java/talon/TalonException.java?annotate=1.4

    CVSWeb: View this file: http://openprivacy.org/cgi-bin/cvsweb/cvsweb.cgi/talon/src/java/talon/TalonException.java?rev=1.4&content-type=text/x-cvsweb-markup

    CVSWeb: Diff to previous version: http://openprivacy.org/cgi-bin/cvsweb/cvsweb.cgi/talon/src/java/talon/TalonException.java.diff?r1=1.4&r2=1.3

    -----------------------------------

    Index: talon/src/java/talon/TalonException.java
    diff -u talon/src/java/talon/TalonException.java:1.3 talon/src/java/talon/TalonException.java:1.4
    --- talon/src/java/talon/TalonException.java:1.3 Fri Feb 23 02:09:17 2001
    +++ talon/src/java/talon/TalonException.java Sun Mar 11 15:51:20 2001
    @@ -19,11 +19,11 @@
      * this Exception was created.
      *
      * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: TalonException.java,v 1.3 2001/02/23 10:09:17 burton Exp $
    + * @version $Id: TalonException.java,v 1.4 2001/03/11 23:51:20 burton Exp $
      */
     public class TalonException extends Exception {
     
    - private Exception reason = null;
    + private Throwable reason = null;
         
         public TalonException() {
             super();
    @@ -33,7 +33,7 @@
             super( message );
         }
     
    - public TalonException( Exception reason ) {
    + public TalonException( Throwable reason ) {
             super( reason.getMessage() );
             this.reason = reason;
         }



    This archive was generated by hypermail 2b30 : Sun Mar 11 2001 - 15:51:24 PST