package net.titaniclinux.daogen.examples; import java.util.*; /** * NotFoundException exception. This exception will be thrown from * Dao object if load, update or delete for one object fails to find the * correct row. * * NOTE: You will need only one instance of this class to use multiple * DaoGen generated objects. */ /** * This sourcecode has been generated by FREE DaoGen generator version 2.2.0. * The usage of generated code is restricted to OpenSource software projects * only. DaoGen is available in http://titaniclinux.net/daogen/ * * DaoGen license: The following DaoGen generated source code is licensed * under the terms of GNU GPL license. The full text for license is available * in GNU project's pages: http://www.gnu.org/copyleft/gpl.html * */ public class NotFoundException extends Exception { /** * Constructor for NotFoundException. The input message is * returned in toString() message. */ public NotFoundException(String msg) { super(msg); } }