Package org.apache.commons.cli
Class UnrecognizedOptionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.apache.commons.cli.ParseException
org.apache.commons.cli.UnrecognizedOptionException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
AmbiguousOptionException
Thrown during parsing signaling an unrecognized option.
- See Also:
-
Constructor Summary
ConstructorDescriptionUnrecognizedOptionException
(String message) Constructs a newUnrecognizedArgumentException
with the specified detail message.UnrecognizedOptionException
(String message, String option) Constructs a newUnrecognizedArgumentException
with the specified option and detail message. -
Method Summary
Methods inherited from class org.apache.commons.cli.ParseException
wrap
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
UnrecognizedOptionException
Constructs a newUnrecognizedArgumentException
with the specified detail message.- Parameters:
message
- the detail message
-
UnrecognizedOptionException
Constructs a newUnrecognizedArgumentException
with the specified option and detail message.- Parameters:
message
- the detail messageoption
- the unrecognized option- Since:
- 1.2
-
-
Method Details
-
getOption
Gets the unrecognized option.- Returns:
- the related option
- Since:
- 1.2
-