
org.monarchinitiative.phenol.annotations.assoc.MissingPhenolResourceException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of phenol-annotations Show documentation
Show all versions of phenol-annotations Show documentation
phenol-annotation contains the annotation functionality for ontologies
package org.monarchinitiative.phenol.annotations.assoc;
import org.monarchinitiative.phenol.base.PhenolRuntimeException;
public class MissingPhenolResourceException extends PhenolRuntimeException {
public MissingPhenolResourceException() {
super();
}
public MissingPhenolResourceException(String message) {
super(message);
}
public MissingPhenolResourceException(Throwable cause) {
super(cause);
}
public MissingPhenolResourceException(String message, Throwable cause) {
super(message, cause);
}
protected MissingPhenolResourceException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy