
toxgene.util.KeyNotFoundException Maven / Gradle / Ivy
/**
* 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 - 2025 Weber Informatics LLC | Privacy Policy