base mod created
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
package net.minecraft.command;
|
||||
|
||||
public class CommandException extends Exception
|
||||
{
|
||||
private final Object[] errorObjects;
|
||||
|
||||
public CommandException(String message, Object... objects)
|
||||
{
|
||||
super(message);
|
||||
this.errorObjects = objects;
|
||||
}
|
||||
|
||||
public Object[] getErrorObjects()
|
||||
{
|
||||
return this.errorObjects;
|
||||
}
|
||||
|
||||
public synchronized Throwable fillInStackTrace()
|
||||
{
|
||||
return this;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user