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 { 23 /** String containing the CVS revision. Read out via reflection!*/ 24 private final static String 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 a_message) { 37 super(a_message); 38 } 39 } 40