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

de.charite.compbio.jannovar.cmd.HelpRequestedException Maven / Gradle / Ivy

package de.charite.compbio.jannovar.cmd;

import de.charite.compbio.jannovar.JannovarException;

/**
 * Thrown when the user requests help.
 *
 * @author Manuel Holtgrewe
 */
public class HelpRequestedException extends JannovarException {

	private static final long serialVersionUID = 1L;

	public HelpRequestedException() {
		super();
	}

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy