base mod created
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user