From: Vance K. <va...@us...> - 2006-07-22 06:21:22
|
User: vancek Date: 06/07/21 23:21:20 Modified: andromda-ejb3/src/main/resources/templates/ejb3 DaoDefaultException.vsl Log: fix JIRA EJB-39 add serialVersionUID Revision Changes Path 1.2 +5 -0 cartridges/andromda-ejb3/src/main/resources/templates/ejb3/DaoDefaultException.vsl Index: DaoDefaultException.vsl =================================================================== RCS file: /cvsroot/andromdaplugins/cartridges/andromda-ejb3/src/main/resources/templates/ejb3/DaoDefaultException.vsl,v retrieving revision 1.1 retrieving revision 1.2 diff -u -w -r1.1 -r1.2 --- DaoDefaultException.vsl 24 Apr 2006 02:21:43 -0000 1.1 +++ DaoDefaultException.vsl 22 Jul 2006 06:21:20 -0000 1.2 @@ -17,6 +17,11 @@ extends java.lang.Exception { /** + * The serial version UID of this class. Needed for serialization. + */ + private static final long serialVersionUID = ${entity.serialVersionUID}L; + + /** * The default constructor. */ public ${entity.daoDefaultExceptionName}() |