/* * DAOException.java * * Created on 2 de Dezembro de 2006, 05:34 * * To change this template, choose Tools | Template Manager * and open the template in the editor. */ package com.tecgraf.dao; /** * * @author ismael */ public class DAOException extends ChainedException { /** Creates a new instance of DAOException */ public DAOException() { super(); } public DAOException(String message) { super(message); } public DAOException(String message, Throwable cause) { super(message, cause); } }