jon 02/03/10 10:51:33
Modified: src/templates/om BaseManager.vm
Log:
fixed javadoc Exception -> TorqueException
Revision Changes Path
1.3 +9 -9 jakarta-turbine-torque/src/templates/om/BaseManager.vm
Index: BaseManager.vm
===================================================================
RCS file: /home/cvs/jakarta-turbine-torque/src/templates/om/BaseManager.vm,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- BaseManager.vm 6 Mar 2002 03:48:15 -0000 1.2
+++ BaseManager.vm 10 Mar 2002 18:51:33 -0000 1.3
@@ -1,6 +1,6 @@
#*
* author <a href="mailto:[EMAIL PROTECTED]">John McNally</a>
- * version $Id: BaseManager.vm,v 1.2 2002/03/06 03:48:15 jmcnally Exp $
+ * version $Id: BaseManager.vm,v 1.3 2002/03/10 18:51:33 jon Exp $
*#
#set ($db = $table.Database)
@@ -52,7 +52,7 @@
* Static accessor for the @see #getInstanceImpl().
*
* @return a <code>${table.JavaName}</code> value
- * @exception Exception if an error occurs
+ * @exception TorqueException if an error occurs
*/
public static ${table.JavaName} getInstance()
throws TorqueException
@@ -65,7 +65,7 @@
*
* @param id an <code>ObjectKey</code> value
* @return a <code>${table.JavaName}</code> value
- * @exception Exception if an error occurs
+ * @exception TorqueException if an error occurs
*/
public static ${table.JavaName} getInstance(ObjectKey id)
throws TorqueException
@@ -78,7 +78,7 @@
*
* @param id an <code>ObjectKey</code> value
* @return a <code>${table.JavaName}</code> value
- * @exception Exception if an error occurs
+ * @exception TorqueException if an error occurs
*/
public static ${table.JavaName} getInstance(ObjectKey id, boolean fromCache)
throws TorqueException
@@ -91,7 +91,7 @@
*
* @param ids a <code>List</code> value
* @return a <code>List</code> value
- * @exception Exception if an error occurs
+ * @exception TorqueException if an error occurs
*/
public static List getInstances(List ids)
throws TorqueException
@@ -104,7 +104,7 @@
*
* @param ids a <code>List</code> value
* @return a <code>List</code> value
- * @exception Exception if an error occurs
+ * @exception TorqueException if an error occurs
*/
public static List getInstances(List ids, boolean fromCache)
throws TorqueException
@@ -191,7 +191,7 @@
*
* @param ids a List of <code>ObjectKeys</code> value
* @return a <code>List</code> of ${table.JavaName}s
- * @exception Exception if an error occurs
+ * @exception TorqueException if an error occurs
*/
protected List getInstancesImpl(List ids)
throws TorqueException
@@ -206,7 +206,7 @@
* @param fromCache if true, look for cached ${table.JavaName}s before loading
* from storage.
* @return a <code>List</code> of ${table.JavaName}s
- * @exception Exception if an error occurs
+ * @exception TorqueException if an error occurs
*/
protected List getInstancesImpl(List ids, boolean fromCache)
throws TorqueException
@@ -242,7 +242,7 @@
*
* @param moduleIds a <code>NumberKey[]</code> value
* @return a <code>List</code> value
- * @exception Exception if an error occurs
+ * @exception TorqueException if an error occurs
*/
protected List retrieveStoredOMs(List ids)
throws TorqueException
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>