LibsDisguises/src/main/java/me/libraryaddict/disguise/utilities/parser/DisguiseParseException.java
libraryaddict efbd6e29e3
Renamed messages from "option" to "method" to make things clearer
Added better support for tab completion and ignoring the first arg of falling blocks and item disguises, so /disguise fallingblock setburning - Is now possible
Fixed itemstack parsing returning illegal/unwanted air block
2020-04-04 19:58:21 +13:00

31 lines
762 B
Java

package me.libraryaddict.disguise.utilities.parser;
import me.libraryaddict.disguise.utilities.translations.LibsMsg;
/**
* Created by libraryaddict on 7/09/2018.
*/
public class DisguiseParseException extends Exception {
private static final long serialVersionUID = 1276971370793124510L;
public DisguiseParseException() {
super();
}
public DisguiseParseException(LibsMsg message, String... params) {
super(message.get(params));
}
public DisguiseParseException(String message) {
super(message);
}
public DisguiseParseException(String message, Throwable throwable) {
super(message, throwable);
}
public DisguiseParseException(Throwable throwable) {
super(throwable);
}
}