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 with configuring JGAP via the GUI. 16 * 17 * @author Siddhartha Azad 18 * @since 2.3 19 * */ 20 public class ConfigException 21 extends Exception { 22 /** String containing the CVS revision. Read out via reflection!*/ 23 private final static String CVS_REVISION = "$Revision: 1.2 $"; 24 25 /** 26 * Constructs a new ConfigException instance with the 27 * given error message. 28 * 29 * @param a_message an error message describing the reason this exception 30 * is being thrown. 31 * 32 * @author Siddhartha Azad 33 * @since 2.3 34 */ 35 public ConfigException(final String a_message) { 36 super(a_message); 37 } 38 } 39