KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jgap > data > config > MetaConfigException


1 /*
2  * This file is part of JGAP.
3  *
4  * JGAP offers a dual license model containing the LGPL as well as the MPL.
5  *
6  * For licencing information please see the file license.txt included with JGAP
7  * or have a look at the top of class org.jgap.Chromosome which representatively
8  * includes the JGAP license policy applicable for any file delivered with JGAP.
9  */

10 package org.jgap.data.config;
11
12
13
14 /**
15  * Exception throw when there is an error reading or loading the config file
16  * describing the GUI for JGAP configuration.
17  *
18  * @author Siddhartha Azad
19  * @since 2.4
20  * */

21 public class MetaConfigException
22     extends Exception JavaDoc {
23   /** String containing the CVS revision. Read out via reflection!*/
24   private final static String JavaDoc CVS_REVISION = "$Revision: 1.2 $";
25
26   /**
27    * Constructs a new MetaConfigException instance with the
28    * given error message.
29    *
30    * @param a_message an error message describing the reason this exception
31    * is being thrown
32    *
33    * @author Siddhartha Azad
34    * @since 2.4
35    */

36   public MetaConfigException(final String JavaDoc a_message) {
37     super(a_message);
38   }
39 }
40
Popular Tags