de.charite.compbio.jannovar.datasource.FileDownloadException 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;
/**
* Exception that can be called if something went wrong while downloading the transcript files.
*
* @author Marten Jaeger
*/
public class FileDownloadException extends JannovarException {
private static final long serialVersionUID = 1L;
public FileDownloadException() {
super();
}
public FileDownloadException(String msg) {
super(msg);
}
public FileDownloadException(String msg, Throwable cause) {
super(msg, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy