org.bitbucket.bradleysmithllc.java_cl_parser.MissingCLIEntryException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-cl-parser Show documentation
Show all versions of java-cl-parser Show documentation
This parser strives to achieve an elegant, ioc-type interface to make launching command-line projects
effortless.
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);
}
}