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

org.bitbucket.bradleysmithllc.java_cl_parser.MissingCLIEntryException Maven / Gradle / Ivy

Go to download

This parser strives to achieve an elegant, ioc-type interface to make launching command-line projects effortless.

There is a newer version: 3.4.2
Show newest version
package org.bitbucket.bradleysmithllc.java_cl_parser;

public class MissingCLIEntryException extends Exception
{
	public MissingCLIEntryException()
	{
	}

	public MissingCLIEntryException(String message)
	{
		super(message);
	}

	public MissingCLIEntryException(String message, Throwable cause)
	{
		super(message, cause);
	}

	public MissingCLIEntryException(Throwable cause)
	{
		super(cause);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy