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

skadistats.clarity.ClarityException Maven / Gradle / Ivy

package skadistats.clarity;

public class ClarityException extends RuntimeException {

    public ClarityException(Exception cause, String format, Object... parameters) {
        super(String.format(format, parameters), cause);
    }

    public ClarityException(String format, Object... parameters) {
        super(String.format(format, parameters));
    }

    public ClarityException(Throwable cause) {
        super(cause);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy