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

kr.motd.maven.sphinx.SphinxException Maven / Gradle / Ivy

There is a newer version: 2.10.0
Show newest version
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy