package dev.civl.mc.run.common;
public class RuntimeCommandException extends RuntimeException {
/**
* Eclipse made me do it.
*/
private static final long serialVersionUID = 5805087439514397831L;
public RuntimeCommandException() {
super("Command line syntax error");
}
public RuntimeCommandException(String msg) {
super(msg != null ? msg : "Command line sytax error");
}
}