de.julielab.genemapper.resources.util.GeneMapperResourcesException 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 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);
}
}