de.charite.compbio.jannovar.datasource.InvalidDataSourceException 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.datasource;
import de.charite.compbio.jannovar.JannovarException;
/**
* Thrown on problems with data source configuration files.
*
* @author Manuel Holtgrewe
*/
public class InvalidDataSourceException extends JannovarException {
private static final long serialVersionUID = 1L;
public InvalidDataSourceException() {
super();
}
public InvalidDataSourceException(String msg) {
super(msg);
}
public InvalidDataSourceException(String msg, Throwable cause) {
super(msg);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy