All Downloads are FREE. Search and download functionalities are using the official Maven repository.

sbtrunner.args.MissingArgumentException Maven / Gradle / Ivy

There is a newer version: 0.2.0
Show newest version
package sbtrunner.args;

public class MissingArgumentException extends ParsingArgumentsException {

    private final String type;
    private final String opt;

    public MissingArgumentException(String type, String opt) {
        super(opt + " requires <" + type + "> argument", 1);
        this.type = type;
        this.opt = opt;
    }

    public String getType() {
        return type;
    }
    public String getOpt() {
        return opt;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy