toxgene.util.KeyNotFoundException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ToxGene Show documentation
Show all versions of ToxGene Show documentation
Modified ToXGene for the iBench project.
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();
}
}