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

de.julielab.genemapper.resources.util.UncheckedGeneMapperResourcesException 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 UncheckedGeneMapperResourcesException extends RuntimeException {

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

	public UncheckedGeneMapperResourcesException() {
		super();
	}

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

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

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy