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

de.julielab.geneexpbase.GeneExpRuntimeException Maven / Gradle / Ivy

package de.julielab.geneexpbase;

/**
 * The most general runtime exception concerning algorithms that work with gene named entities.
 */
public class GeneExpRuntimeException extends RuntimeException{
    public GeneExpRuntimeException() {
    }

    public GeneExpRuntimeException(String message) {
        super(message);
    }

    public GeneExpRuntimeException(String message, Throwable cause) {
        super(message, cause);
    }

    public GeneExpRuntimeException(Throwable cause) {
        super(cause);
    }

    public GeneExpRuntimeException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy