All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jgap.util.CloneException Maven / Gradle / Ivy

package org.jgap.util;

/**
 * Exception that occurs during cloning an object.
 *
 *
 * @author Klaus Meffert
 * @since 3.1
 */
public class CloneException
    extends RuntimeException {
  /** String containing the CVS revision. Read out via reflection!*/
  final static String CVS_REVISION = "$Revision: 1.1 $";

  public CloneException() {
    super();
  }

  public CloneException(Throwable a_throwable) {
    super(a_throwable);
  }

  public CloneException(String a_message) {
    super(a_message);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy