001 package net.minecraft.command; 002 003 public class CommandException extends RuntimeException 004 { 005 private Object[] errorObjects; 006 007 public CommandException(String par1Str, Object ... par2ArrayOfObj) 008 { 009 super(par1Str); 010 this.errorObjects = par2ArrayOfObj; 011 } 012 013 public Object[] getErrorOjbects() 014 { 015 return this.errorObjects; 016 } 017 }