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

Code
Comments
Other
Rev Date Author Line
149 10 Aug 06 enell 1 /* (non-javadoc)
149 10 Aug 06 enell 2  * MissingOptionException.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
149 10 Aug 06 enell 22 package basefile;
149 10 Aug 06 enell 23
149 10 Aug 06 enell 24 /**
149 10 Aug 06 enell 25  * @author Johan Enell
149 10 Aug 06 enell 26  *
149 10 Aug 06 enell 27  */
149 10 Aug 06 enell 28 public class MissingOptionException extends BASEFileException {
149 10 Aug 06 enell 29
149 10 Aug 06 enell 30   /**
149 10 Aug 06 enell 31    * Constructs an <code>MissingOptionException</code> with the specified detail message.
149 10 Aug 06 enell 32    * 
149 10 Aug 06 enell 33    * @param message the detail message. 
149 10 Aug 06 enell 34    */
149 10 Aug 06 enell 35   public MissingOptionException(String message) {
149 10 Aug 06 enell 36     super(message);
149 10 Aug 06 enell 37   }
149 10 Aug 06 enell 38
149 10 Aug 06 enell 39 }