de.charite.compbio.jannovar.mendel.IncompatiblePedigreeException Maven / Gradle / Ivy
package de.charite.compbio.jannovar.mendel;
import de.charite.compbio.jannovar.JannovarException;
/**
* Thrown when the pedigree does not fit to the {@link GenotypeCalls}
*
* @author Manuel Holtgrewe
*/
public class IncompatiblePedigreeException extends JannovarException {
private static final long serialVersionUID = 1L;
public IncompatiblePedigreeException(String msg, Throwable cause) {
super(msg, cause);
}
public IncompatiblePedigreeException(String msg) {
super(msg);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy