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

guru.bitman.fictionalvieira.command.InvalidCommand Maven / Gradle / Ivy

Go to download

The idea behind Fictional Vieira is to combine Bash and Java strengths to ease glue logic maintenance usually created using a mix of Bash and CLI programs

The newest version!
package guru.bitman.fictionalvieira.command;

public class InvalidCommand
        extends Throwable
{
    public InvalidCommand(String cmd)
    {
        super("Invalid command : " + cmd);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy