1 /* ======================================================================== 2 * JFiglet, a free open source java implementation of figlet and the 3 * figfont specification (see http://www.figlet.org) 4 * Copyright (C) 2004 Sebastien Brunot 5 * 6 * This library is free software; you can redistribute it and/or 7 * modify it under the terms of the GNU Lesser General Public 8 * License as published by the Free Software Foundation; either 9 * version 2.1 of the License, or (at your option) any later version. 10 * 11 * This library is distributed in the hope that it will be useful, 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14 * Lesser General Public License for more details. 15 * 16 * You should have received a copy of the GNU Lesser General Public 17 * License along with this library; if not, write to the Free Software 18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 19 * ======================================================================== 20 */ 21 package org.gnu.jfiglet.core; 22 23 /*** 24 * @TODO : DOCUMENT ME ! 25 * 26 * @version $Id: IllegalFIGFontFileException.java,v 1.2 2004/04/27 20:09:28 sbrunot Exp $ 27 * 28 * @author <a href="mailto:sebastien.brunot@club-internet.fr">Sebastien Brunot</a> 29 * 30 */ 31 public class IllegalFIGFontFileException extends Exception 32 { 33 34 /*** 35 * 36 */ 37 public IllegalFIGFontFileException() 38 { 39 super(); 40 // @TODO Auto-generated constructor stub 41 } 42 43 /*** 44 * @param arg0 45 */ 46 public IllegalFIGFontFileException(String arg0) 47 { 48 super(arg0); 49 // @TODO Auto-generated constructor stub 50 } 51 52 /*** 53 * @param arg0 54 */ 55 public IllegalFIGFontFileException(Throwable arg0) 56 { 57 super(arg0); 58 // @TODO Auto-generated constructor stub 59 } 60 61 /*** 62 * @param arg0 63 * @param arg1 64 */ 65 public IllegalFIGFontFileException(String arg0, Throwable arg1) 66 { 67 super(arg0, arg1); 68 // @TODO Auto-generated constructor stub 69 } 70 71 }