de.julielab.genemapper.resources.util.UncheckedGeneMapperResourcesException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gene-mapper-resources Show documentation
Show all versions of gene-mapper-resources Show documentation
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);
}
}