Package net.aufdemrand.denizencore.exceptions

Examples of net.aufdemrand.denizencore.exceptions.ScriptEntryCreationException


     * @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();

View Full Code Here

TOP

Related Classes of net.aufdemrand.denizencore.exceptions.ScriptEntryCreationException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.