gg.neko.spiceit.exception.SpiceItException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spiceit-api Show documentation
Show all versions of spiceit-api Show documentation
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);
}
}