/* Copyright 2008 NIC Chile. Castellano DTE OpenLibs es software libre: usted puede redistribuirlo y/o modificarlo conforme a los términos de la Licencia Pública General Reducida de GNU publicada por la Fundación para el Software Libre, ya sea la versión 3 de esta Licencia o (a su elección) cualquier versión posterior. DTE OpenLibs se distribuye con el deseo de que le resulte útil, pero SIN GARANTÍAS DE NINGÚN TIPO; ni siquiera con las garantías implícitas de COMERCIABILIDAD o APTITUD PARA UN PROPÓSITO DETERMINADO. Para más información, consulte la Licencia Pública General Reducida de GNU. Junto con DTE OpenLibs , se debería incluir una copia de la Licencia Pública General Reducida de GNU. De no ser así, refiérase a <http://www.gnu.org/licenses/> English This file is part of DTE OpenLibs. DTE OpenLibs is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. DTE OpenLibs is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU General Public License along with DTE OpenLibs. If not, see <http://www.gnu.org/licenses/> */ package cl.nic.dte; public class TimbreException extends Exception { /** * */ private static final long serialVersionUID = 1L; public TimbreException() { // TODO Auto-generated constructor stub } public TimbreException(String message) { super(message); // TODO Auto-generated constructor stub } public TimbreException(Throwable cause) { super(cause); // TODO Auto-generated constructor stub } public TimbreException(String message, Throwable cause) { super(message, cause); // TODO Auto-generated constructor stub } }