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

de.julielab.genemapper.resources.util.GeneMapperResourcesException Maven / Gradle / Ivy

Go to download

This project assembles code and files required to build the dictionaries and indexes used by the JCoRe Gene Mapper.

The newest version!
package de.julielab.genemapper.resources.util;

public class GeneMapperResourcesException extends Exception {

	/**
	 * 
	 */
	private static final long serialVersionUID = -2054381307397661768L;

	public GeneMapperResourcesException() {
		super();
	}

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

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

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy