## ============================================================================ ## Filename : FWJavaBeanDataNotFoundExceptionTemplate.vm ## Note(s) : This template is used to generate the DataNotFoundException ## class used by the Java Bean DAO classes. ## ## Copyright (c) 2007 ThinkUI Software Inc. All rights reserved. ## ============================================================================ ## ## **************************************************************************** ## The following variables are available in this template. For more ## information on any of the following variable, please refer to the user guide. ## **************************************************************************** ## $projectName ## $authorName ## $headerText ## $className ## $packageName ## $subPackageName ## $prjPkgName ## $prjClassPrefix ## $superClassName ## $date ## $codeGen ## #if ($packageName) package $packageName; #end #parse( "ClassHeaderInclude.vm" ) /** * This exception is thrown when a data record cannot be found by a DAO. */ public class DataNotFoundException extends Exception { /** * DataNotFoundException Constructor. */ public DataNotFoundException(String message) { super(message); } /** * DataNotFoundException Constructor. */ public DataNotFoundException() { super(); } }