Package com.guokr.simbase.errors

Examples of com.guokr.simbase.errors.SimCommandException


public abstract class SimCommand {

    public abstract String signature();

    public void invoke(SimEngine engine, SimCallback callback) {
        throw new SimCommandException("Wrong parameters passed in");
    }
View Full Code Here


    public void invoke(SimEngine engine, SimCallback callback) {
        throw new SimCommandException("Wrong parameters passed in");
    }

    public void invoke(SimEngine engine, String arg1, SimCallback callback) {
        throw new SimCommandException("Wrong parameters passed in");
    }
View Full Code Here

    public void invoke(SimEngine engine, String arg1, SimCallback callback) {
        throw new SimCommandException("Wrong parameters passed in");
    }

    public void invoke(SimEngine engine, String arg1, String arg2, SimCallback callback) {
        throw new SimCommandException("Wrong parameters passed in");
    }
View Full Code Here

    public void invoke(SimEngine engine, String arg1, String arg2, SimCallback callback) {
        throw new SimCommandException("Wrong parameters passed in");
    }

    public void invoke(SimEngine engine, String arg1, int arg2, SimCallback callback) {
        throw new SimCommandException("Wrong parameters passed in");
    }
View Full Code Here

    public void invoke(SimEngine engine, String arg1, int arg2, SimCallback callback) {
        throw new SimCommandException("Wrong parameters passed in");
    }

    public void invoke(SimEngine engine, String arg1, float arg2, SimCallback callback) {
        throw new SimCommandException("Wrong parameters passed in");
    }
View Full Code Here

    public void invoke(SimEngine engine, String arg1, float arg2, SimCallback callback) {
        throw new SimCommandException("Wrong parameters passed in");
    }

    public void invoke(SimEngine engine, String arg1, String[] arg2, SimCallback callback) {
        throw new SimCommandException("Wrong parameters passed in");
    }
View Full Code Here

    public void invoke(SimEngine engine, String arg1, String[] arg2, SimCallback callback) {
        throw new SimCommandException("Wrong parameters passed in");
    }

    public void invoke(SimEngine engine, String arg1, int[] arg2, SimCallback callback) {
        throw new SimCommandException("Wrong parameters passed in");
    }
View Full Code Here

    public void invoke(SimEngine engine, String arg1, int[] arg2, SimCallback callback) {
        throw new SimCommandException("Wrong parameters passed in");
    }

    public void invoke(SimEngine engine, String arg1, float[] arg2, SimCallback callback) {
        throw new SimCommandException("Wrong parameters passed in");
    }
View Full Code Here

    public void invoke(SimEngine engine, String arg1, float[] arg2, SimCallback callback) {
        throw new SimCommandException("Wrong parameters passed in");
    }

    public void invoke(SimEngine engine, String arg1, String arg2, String arg3, SimCallback callback) {
        throw new SimCommandException("Wrong parameters passed in");
    }
View Full Code Here

    public void invoke(SimEngine engine, String arg1, String arg2, String arg3, SimCallback callback) {
        throw new SimCommandException("Wrong parameters passed in");
    }

    public void invoke(SimEngine engine, String arg1, String arg2, int arg3, SimCallback callback) {
        throw new SimCommandException("Wrong parameters passed in");
    }
View Full Code Here

TOP

Related Classes of com.guokr.simbase.errors.SimCommandException

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.