Uses of Class
com.github.rvesse.airline.parser.errors.ParseException
-
Packages that use ParseException Package Description com.github.rvesse.airline.parser com.github.rvesse.airline.parser.errors com.github.rvesse.airline.parser.errors.handlers -
-
Uses of ParseException in com.github.rvesse.airline.parser
Fields in com.github.rvesse.airline.parser with type parameters of type ParseException Modifier and Type Field Description private java.util.Collection<ParseException>
ParseResult. errors
Methods in com.github.rvesse.airline.parser that return types with arguments of type ParseException Modifier and Type Method Description java.util.Collection<ParseException>
ParseResult. getErrors()
Gets the collection of errors that occurred, may be empty if parsing was successfulConstructor parameters in com.github.rvesse.airline.parser with type arguments of type ParseException Constructor Description ParseResult(ParseState<T> state, java.util.Collection<ParseException> errors)
-
Uses of ParseException in com.github.rvesse.airline.parser.errors
Subclasses of ParseException in com.github.rvesse.airline.parser.errors Modifier and Type Class Description class
ParseAliasCircularReferenceException
Exception that occurs when alias chaining is enabled and a circular reference is encounteredclass
ParseArgumentsIllegalValueException
Exception thrown when the value for an option is not in a specific set of allowed valuesclass
ParseArgumentsMissingException
Exception thrown when required arguments are missingclass
ParseArgumentsUnexpectedException
Exception that is thrown when a command receives unexpected argumentsclass
ParseCommandMissingException
Exception that is thrown when no command is specifiedclass
ParseCommandUnrecognizedException
Exception that is thrown when an unrecognized command is suppliedclass
ParseInvalidRestrictionException
Parser exception that indicates that a declared restriction was invalidclass
ParseOptionConversionException
Exception that is thrown when the argument supplied as the value for an option cannot be converted to the options Java typeclass
ParseOptionGroupException
A parser exception that relates to a restriction violated where the violation pertains to some group of optionsclass
ParseOptionIllegalValueException
Exception thrown when the value for an option is not in a specific set of allowed valuesclass
ParseOptionMissingException
Exception that is thrown when a required option is missingclass
ParseOptionMissingValueException
Exception that is thrown when an option expects one/more values and no values are suppliedclass
ParseOptionOutOfRangeException
Error that indicates that an options value was outside of an acceptable rangeclass
ParseOptionUnexpectedException
Exception thrown if an option is encountered in an unexpected location e.g.class
ParseRestrictionViolatedException
Exception class that indicates that some restriction was violatedclass
ParseTooManyArgumentsException
Error that is thrown if too many arguments are provided -
Uses of ParseException in com.github.rvesse.airline.parser.errors.handlers
Fields in com.github.rvesse.airline.parser.errors.handlers with type parameters of type ParseException Modifier and Type Field Description protected java.util.List<ParseException>
AbstractCollectingHandler. errors
Methods in com.github.rvesse.airline.parser.errors.handlers that return types with arguments of type ParseException Modifier and Type Method Description protected java.util.List<ParseException>
AbstractCollectingHandler. getCollection()
Methods in com.github.rvesse.airline.parser.errors.handlers with parameters of type ParseException Modifier and Type Method Description void
AbstractCollectingHandler. handleError(ParseException e)
void
FailFast. handleError(ParseException e)
void
ParserErrorHandler. handleError(ParseException e)
Handlers an error
-