package net.minecraft.server;

public class CommandException extends Exception {

    private final Object[] a;

    public CommandException(String s, Object... aobject) {
        super(s);
        this.a = aobject;
    }

    public Object[] getArgs() {
        return this.a;
    }

    public synchronized Throwable fillInStackTrace() {
        return this;
    }
}
