19 lines
411 B
Java
19 lines
411 B
Java
package net.minecraft.command;
|
|
|
|
public class InvalidBlockStateException extends CommandException
|
|
{
|
|
public InvalidBlockStateException()
|
|
{
|
|
this("commands.generic.blockstate.invalid");
|
|
}
|
|
|
|
public InvalidBlockStateException(String message, Object... objects)
|
|
{
|
|
super(message, objects);
|
|
}
|
|
|
|
public synchronized Throwable fillInStackTrace()
|
|
{
|
|
return this;
|
|
}
|
|
} |