plugins/base1/se.lu.onk/trunk/BaseFile_deprecated/src/basefile/BASEFileException.java

Code
Comments
Other
Rev Date Author Line
149 10 Aug 06 enell 1 /* (non-javadoc)
149 10 Aug 06 enell 2  * BASEFileException.java is part of BASEFile.
149 10 Aug 06 enell 3  *
149 10 Aug 06 enell 4  * BASEFile is free software; you can redistribute it and/or modify
149 10 Aug 06 enell 5  * it under the terms of the GNU General Public License as published by
149 10 Aug 06 enell 6  * the Free Software Foundation; either version 2 of the License, or
149 10 Aug 06 enell 7  * (at your option) any later version.
149 10 Aug 06 enell 8  * 
149 10 Aug 06 enell 9  * BASEFile is distributed in the hope that it will be useful,
149 10 Aug 06 enell 10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
149 10 Aug 06 enell 11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
149 10 Aug 06 enell 12  * GNU General Public License for more details.
149 10 Aug 06 enell 13  * 
149 10 Aug 06 enell 14  * You should have received a copy of the GNU General Public License
149 10 Aug 06 enell 15  * along with BASEFile; if not, write to the Free Software
149 10 Aug 06 enell 16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
149 10 Aug 06 enell 17  * 
149 10 Aug 06 enell 18  * johan.enell@onk.lu.se
149 10 Aug 06 enell 19  * Johan Enell, Dept Oncology, Lund University, S-221 85 Lund, Sweden
149 10 Aug 06 enell 20  */
149 10 Aug 06 enell 21 package basefile;
149 10 Aug 06 enell 22
149 10 Aug 06 enell 23 /**
149 10 Aug 06 enell 24  * <code>BASEFileException</code> is the superclass to all exceptions thrown from the baseFile package. 
149 10 Aug 06 enell 25  * 
149 10 Aug 06 enell 26  * @author Johan Enell
149 10 Aug 06 enell 27  */
149 10 Aug 06 enell 28 public class BASEFileException extends PluginException
149 10 Aug 06 enell 29 {
149 10 Aug 06 enell 30
149 10 Aug 06 enell 31   public BASEFileException()
149 10 Aug 06 enell 32   {
149 10 Aug 06 enell 33     super();
149 10 Aug 06 enell 34   }
149 10 Aug 06 enell 35
149 10 Aug 06 enell 36   public BASEFileException(String message)
149 10 Aug 06 enell 37   {
149 10 Aug 06 enell 38     super(message);
149 10 Aug 06 enell 39   }
149 10 Aug 06 enell 40
149 10 Aug 06 enell 41   public BASEFileException(Throwable e)
149 10 Aug 06 enell 42   {
149 10 Aug 06 enell 43     super(e);
149 10 Aug 06 enell 44   }
245 13 Mar 07 enell 45
245 13 Mar 07 enell 46   public BASEFileException(String message, Throwable e)
245 13 Mar 07 enell 47   {
245 13 Mar 07 enell 48     super(message, e);
245 13 Mar 07 enell 49   }
149 10 Aug 06 enell 50 }