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

de.charite.compbio.jannovar.annotation.AnnotationException Maven / Gradle / Ivy

package de.charite.compbio.jannovar.annotation;

import de.charite.compbio.jannovar.JannovarException;

/**
 * Annotation exceptions are thrown when the information provided is not well formed or not sufficient to create a
 * correct annotation.
 *
 * @author Peter N Robinson
 */
public class AnnotationException extends JannovarException {

	public static final long serialVersionUID = 2L;

	public AnnotationException() {
		super();
	}

	public AnnotationException(String msg) {
		super(msg);
	}

	public AnnotationException(String msg, Throwable cause) {
		super(msg, cause);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy