mpoeschl    02/03/06 07:12:25

  Modified:    src/java/org/apache/torque/util BasePeer.java
  Log:
  fix javadoc warnings
  
  Revision  Changes    Path
  1.29      +5 -5      
jakarta-turbine-torque/src/java/org/apache/torque/util/BasePeer.java
  
  Index: BasePeer.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-turbine-torque/src/java/org/apache/torque/util/BasePeer.java,v
  retrieving revision 1.28
  retrieving revision 1.29
  diff -u -r1.28 -r1.29
  --- BasePeer.java     4 Mar 2002 21:25:12 -0000       1.28
  +++ BasePeer.java     6 Mar 2002 15:12:25 -0000       1.29
  @@ -115,7 +115,7 @@
    * @author <a href="mailto:[EMAIL PROTECTED]";>Frank Y. Kim</a>
    * @author <a href="mailto:[EMAIL PROTECTED]";>John D. McNally</a>
    * @author <a href="mailto:[EMAIL PROTECTED]";>Brett McLaughlin</a>
  - * @version $Id: BasePeer.java,v 1.28 2002/03/04 21:25:12 jmcnally Exp $
  + * @version $Id: BasePeer.java,v 1.29 2002/03/06 15:12:25 mpoeschl Exp $
    */
   public abstract class BasePeer implements java.io.Serializable
   {
  @@ -836,7 +836,7 @@
           }
           else
           {
  -            throw new TorqueException("Database insert attempted without " + 
  +            throw new TorqueException("Database insert attempted without " +
                   "anything specified to insert");
           }
   
  @@ -1064,7 +1064,7 @@
        * Method to create an SQL query based on values in a Criteria.
        *
        * @param criteria A Criteria.
  -     * @exception Exception Trouble creating the query string.
  +     * @exception TorqueException Trouble creating the query string.
        */
       public static String createQueryString( Criteria criteria )
           throws TorqueException
  @@ -2072,7 +2072,7 @@
        * needed.
        *
        * @param ds The DataSet which contains multiple records.
  -     * @exception Exception Couldn't handle multiple records.
  +     * @exception TorqueException Couldn't handle multiple records.
        */
       protected static void handleMultipleRecords(DataSet ds)
           throws TorqueException
  @@ -2182,7 +2182,7 @@
       /**
        * Performs a SQL <code>select</code> using a PreparedStatement.
        *
  -     * @exception Exception Error performing database query.
  +     * @exception TorqueException Error performing database query.
        */
       public static Vector doPSSelect(Criteria criteria, DBConnection dbCon)
           throws TorqueException
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to