All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.charite.compbio.jannovar.datasource.FileDownloadException Maven / Gradle / Ivy

There is a newer version: 0.41
Show newest version
/**
 *
 */
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