1 /*** $Id: DAOParentKeyNotFoundException.java,v 1.1.1.1 2004/05/18 10:50:13 mochoa Exp $ */
2 package org.j2ee.dao;
3
4 /***
5 * <br>
6 * Based on an example of book <i>Code Notes for J2EE, Edited by GREGORY BRILL,
7 * e-ISBN 0-679-64727-9</i>
8 * <br>
9 * Last modified $Date: 2004/05/18 10:50:13 $
10 * @version $Revision: 1.1.1.1 $
11 * @author mochoa (mochoa@users.sourceforge.net)*/
12 public class DAOParentKeyNotFoundException extends DAOException
13 {
14
15 public DAOParentKeyNotFoundException(String message)
16 {
17 super(message);
18 }
19
20 public DAOParentKeyNotFoundException(String message, Throwable cause)
21 {
22 super(message,cause);
23 }
24 }
This page was automatically generated by Maven