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

toxgene.util.KeyNotFoundException Maven / Gradle / Ivy

The newest version!
/**
 * Implements an Exception for the case a key value is not found in the
 * Dictionary.
 */

package toxgene.util;

import java.lang.RuntimeException;

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy