org.meteordev.starscript.utils.StarscriptError Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of starscript Show documentation
Show all versions of starscript Show documentation
Fast text formatting language for Java.
package org.meteordev.starscript.utils;
public class StarscriptError extends RuntimeException {
public StarscriptError(String message) {
super(message);
}
}