You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
417 B
Java
18 lines
417 B
Java
package net.minecraft.command;
|
|
|
|
public class CommandException extends RuntimeException
|
|
{
|
|
private Object[] errorObjects;
|
|
private static final String __OBFID = "CL_00001187";
|
|
|
|
public CommandException(String p_i1359_1_, Object ... p_i1359_2_)
|
|
{
|
|
super(p_i1359_1_);
|
|
this.errorObjects = p_i1359_2_;
|
|
}
|
|
|
|
public Object[] getErrorOjbects()
|
|
{
|
|
return this.errorObjects;
|
|
}
|
|
} |