kr.motd.maven.sphinx.SphinxException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sphinx-maven-plugin Show documentation
Show all versions of sphinx-maven-plugin Show documentation
Maven plugin that creates the site with Sphinx
package kr.motd.maven.sphinx;
public class SphinxException extends RuntimeException {
private static final long serialVersionUID = 4257071990203862423L;
public SphinxException(String message) {
super(message);
}
public SphinxException(String message, Throwable cause) {
super(message, cause);
}
}