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

Code
Comments
Other
Rev Date Author Line
149 10 Aug 06 enell 1 /* (non-javadoc)
149 10 Aug 06 enell 2  * BadSectionException.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  * Thrown when a baseFile section is corrupt. 
149 10 Aug 06 enell 25  * 
149 10 Aug 06 enell 26  * @author unknown
149 10 Aug 06 enell 27  */
149 10 Aug 06 enell 28 public class BadSectionException extends BASEFileException {
149 10 Aug 06 enell 29
149 10 Aug 06 enell 30   /**
149 10 Aug 06 enell 31    * Constructs an <code>BadSectionException</code> with no detail message.
149 10 Aug 06 enell 32    */
149 10 Aug 06 enell 33   public BadSectionException() {
149 10 Aug 06 enell 34     super();
149 10 Aug 06 enell 35   }
149 10 Aug 06 enell 36
149 10 Aug 06 enell 37   /**
149 10 Aug 06 enell 38    * Constructs an <code>BadSectionException</code> with the specified detail message.
149 10 Aug 06 enell 39    * 
149 10 Aug 06 enell 40    * @param message the detail message.
149 10 Aug 06 enell 41    */
149 10 Aug 06 enell 42   public BadSectionException(String message) {
149 10 Aug 06 enell 43     super(message);
149 10 Aug 06 enell 44   }
149 10 Aug 06 enell 45 }