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

org.opencb.biodata.models.variant.exceptions.NotAVariantException Maven / Gradle / Ivy

The newest version!
/*
 * 
 *
 */

package org.opencb.biodata.models.variant.exceptions;

/**
 * Created by fjlopez on 10/04/15.
 */
public class NotAVariantException extends RuntimeException {

    /**
     * Constructs an instance of NotAVariantException
     * for a field, and with the specified detail message.
     */
    public NotAVariantException() {
        super();
    }

    /**
     * Constructs an instance of NotAVariantException
     * for a field, and with the specified detail message.
     *
     * @param msg the detail message.
     */
    public NotAVariantException(String msg) {
        super(msg);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy