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

Code
Comments
Other
Rev Date Author Line
782 18 Sep 08 jari 1 /*
782 18 Sep 08 jari 2   $Id$
149 10 Aug 06 enell 3
782 18 Sep 08 jari 4   Copyright (C) 2006 Johan Enell
782 18 Sep 08 jari 5
782 18 Sep 08 jari 6   This file is part of the se.lu.onk.BaseFile package, a utility
782 18 Sep 08 jari 7   package for reading files generated by BASE. The package is
782 18 Sep 08 jari 8   available at http://baseplugins.thep.lu.se/ and BASE web site is
782 18 Sep 08 jari 9   http://base.thep.lu.se
782 18 Sep 08 jari 10
782 18 Sep 08 jari 11   This is free software; you can redistribute it and/or modify it
782 18 Sep 08 jari 12   under the terms of the GNU General Public License as published by
782 18 Sep 08 jari 13   the Free Software Foundation; either version 3 of the License, or
782 18 Sep 08 jari 14   (at your option) any later version.
782 18 Sep 08 jari 15
782 18 Sep 08 jari 16   The software is distributed in the hope that it will be useful, but
782 18 Sep 08 jari 17   WITHOUT ANY WARRANTY; without even the implied warranty of
782 18 Sep 08 jari 18   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
782 18 Sep 08 jari 19   General Public License for more details.
782 18 Sep 08 jari 20
782 18 Sep 08 jari 21   You should have received a copy of the GNU General Public License
782 18 Sep 08 jari 22   along with BASE. If not, see <http://www.gnu.org/licenses/>.
782 18 Sep 08 jari 23 */
149 10 Aug 06 enell 24 package basefile;
149 10 Aug 06 enell 25
149 10 Aug 06 enell 26 /**
149 10 Aug 06 enell 27  * @author Johan Enell
149 10 Aug 06 enell 28  *
149 10 Aug 06 enell 29  */
149 10 Aug 06 enell 30 public class MissingOptionException extends BASEFileException {
149 10 Aug 06 enell 31
149 10 Aug 06 enell 32   /**
149 10 Aug 06 enell 33    * Constructs an <code>MissingOptionException</code> with the specified detail message.
149 10 Aug 06 enell 34    * 
149 10 Aug 06 enell 35    * @param message the detail message. 
149 10 Aug 06 enell 36    */
149 10 Aug 06 enell 37   public MissingOptionException(String message) {
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 }