[Ejtools-cvs] libraries/j2ee.deployment/src/main/javax/enterprise/deploy/model/exceptions DDBeanCrea
Brought to you by:
letiemble
From: <let...@us...> - 2003-12-14 09:46:48
|
Update of /cvsroot/ejtools/libraries/j2ee.deployment/src/main/javax/enterprise/deploy/model/exceptions In directory sc8-pr-cvs1:/tmp/cvs-serv4692/src/main/javax/enterprise/deploy/model/exceptions Added Files: DDBeanCreateException.java package.html Log Message: Add up-to-date implementation for the JSR 88. No need for the Sun one. --- NEW FILE: DDBeanCreateException.java --- /* * EJTools, the Enterprise Java Tools * * Distributable under LGPL license. * See terms of license at www.gnu.org. */ package javax.enterprise.deploy.model.exceptions; /** * This exception reports errors in generating a DDBean. * * @author Laurent Etiemble * @version $Revision: 1.1 $ * @since 1.1 */ public class DDBeanCreateException extends Exception { /** Creates new <code>DDBeanCreateException</code> without detail message. */ public DDBeanCreateException() { super(); } /** * Constructs an <code>DDBeanCreateException</code> with the specified detail * message. * * @param msg the detail message. */ public DDBeanCreateException(String msg) { super(msg); } } --- NEW FILE: package.html --- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <!-- EJTools, the Enterprise Java Tools Distributable under LGPL license. See terms of license at www.gnu.org. $Revision: 1.1 $ --> <html> <head/> <body> Provides Tool Vendor exception implementation classes. <h2>Package Specification</h2> <ul> <li><a href="http://jcp.org/jsr/detail/88.jsp">JSR 88, J2EE Application Deployment</a></li> </ul> <h2>Related Documentation</h2> For overviews, tutorials, examples, guides, and tool documentation, please see: <ul> <li><a href="http://java.sun.com/j2ee/tools">J2EE Tools</a></li> </ul> </body> </html> |