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

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

package de.charite.compbio.jannovar.cmd;

import de.charite.compbio.jannovar.JannovarException;

/**
 * Exception thrown on problems with the command line.
 *
 * @author Manuel Holtgrewe
 */
public class CommandLineParsingException extends JannovarException {

	private static final long serialVersionUID = 1L;

	public CommandLineParsingException() {
		super();
	}

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy