View Javadoc
1 /*** 2 * $Id: DAOCheckConstraintFailedException.java,v 1.1.1.1 2004/05/18 10:50:12 mochoa Exp $ 3 * */ 4 5 package org.j2ee.dao; 6 7 /*** 8 * <br> 9 * Based on an example of book <i>Code Notes for J2EE, Edited by GREGORY BRILL, 10 * e-ISBN 0-679-64727-9</i> 11 * <br> 12 * Last modified $Date: 2004/05/18 10:50:12 $ 13 * @version $Revision: 1.1.1.1 $ 14 * @author mochoa (mochoa@users.sourceforge.net)*/ 15 16 public class DAOCheckConstraintFailedException extends DAOException { 17 18 /*** 19 * Constructor without cascade exception 20 * @param message 21 */ 22 public DAOCheckConstraintFailedException(String message) { 23 super(message); 24 } 25 26 /*** 27 * Constructor with cascade exception 28 * @param message 29 * @param cause 30 */ 31 public DAOCheckConstraintFailedException(String message, Throwable cause) { 32 super(message,cause); 33 } 34 }

This page was automatically generated by Maven