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

gg.neko.spiceit.exception.SpiceItException Maven / Gradle / Ivy

Go to download

SpiceIt Application Programming Interface exposes SpiceIt features to the world.

The newest version!
package gg.neko.spiceit.exception;

public abstract class SpiceItException extends RuntimeException {

    public SpiceItException() { }

    public SpiceItException(String message) {
        super(message);
    }

    public SpiceItException(String message, Throwable cause) {
        super(message, cause);
    }

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy