Class AmbiguousOptionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.apache.commons.cli.ParseException
org.apache.commons.cli.UnrecognizedOptionException
org.apache.commons.cli.AmbiguousOptionException
- All Implemented Interfaces:
Serializable
Exception thrown when an option can't be identified from a partial name.
- Since:
- 1.3
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionAmbiguousOptionException(String option, Collection<String> matchingOptions) Constructs a new AmbiguousOptionException. -
Method Summary
Modifier and TypeMethodDescriptionGets the options matching the partial name.Methods inherited from class UnrecognizedOptionException
getOptionMethods inherited from class ParseException
wrapMethods inherited from class Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
AmbiguousOptionException
Constructs a new AmbiguousOptionException.- Parameters:
option- the partial option name.matchingOptions- the options matching the name.
-
-
Method Details
-
getMatchingOptions
Gets the options matching the partial name.- Returns:
- a collection of options matching the name.
-