1 /*** $Id: DAORestrictUpdateFailedException.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 DAORestrictUpdateFailedException extends DAOException
13 {
14 public DAORestrictUpdateFailedException(String message)
15 {
16 super(message);
17 }
18
19 public DAORestrictUpdateFailedException(String message, Throwable cause)
20 {
21 super(message,cause);
22 }
23 }
This page was automatically generated by Maven