de.charite.compbio.jannovar.JannovarException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jannovar-core Show documentation
Show all versions of jannovar-core Show documentation
jannovar-core is a library for the functional annotation of genomic variants
package de.charite.compbio.jannovar;
/**
* Base class for exceptions in Jannovar.
*
* @author Peter N Robinson
* @author Manuel Holtgrewe
*/
public class JannovarException extends Exception {
public static final long serialVersionUID = 2L;
public JannovarException() {
super();
}
public JannovarException(String msg) {
super(msg);
}
public JannovarException(String msg, Throwable cause) {
super(msg, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy