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

toxgene.util.DuplicateKeyException Maven / Gradle / Ivy

/**
 * Implements an Exception for the case a key value is already found in the
 * Dictionary for an insert operation.
 */

package toxgene.util;

import java.lang.RuntimeException;

public class DuplicateKeyException extends RuntimeException{
  public DuplicateKeyException(String s){
	super(s);
  }
  public DuplicateKeyException(){
	super();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy