* @throws ScriptEntryCreationException if 'command' is null
*/
public ScriptEntry(String command, String[] arguments, ScriptContainer script) throws ScriptEntryCreationException {
if (command == null)
throw new ScriptEntryCreationException("dCommand 'name' cannot be null!");
entryData = new BukkitScriptEntryData(null, null); // TODO: Make version-cross-compatible
this.command = command.toUpperCase();