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. errorsMethods 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 classParseAliasCircularReferenceExceptionException that occurs when alias chaining is enabled and a circular reference is encounteredclassParseArgumentsIllegalValueExceptionException thrown when the value for an option is not in a specific set of allowed valuesclassParseArgumentsMissingExceptionException thrown when required arguments are missingclassParseArgumentsUnexpectedExceptionException that is thrown when a command receives unexpected argumentsclassParseCommandMissingExceptionException that is thrown when no command is specifiedclassParseCommandUnrecognizedExceptionException that is thrown when an unrecognized command is suppliedclassParseInvalidRestrictionExceptionParser exception that indicates that a declared restriction was invalidclassParseOptionConversionExceptionException that is thrown when the argument supplied as the value for an option cannot be converted to the options Java typeclassParseOptionGroupExceptionA parser exception that relates to a restriction violated where the violation pertains to some group of optionsclassParseOptionIllegalValueExceptionException thrown when the value for an option is not in a specific set of allowed valuesclassParseOptionMissingExceptionException that is thrown when a required option is missingclassParseOptionMissingValueExceptionException that is thrown when an option expects one/more values and no values are suppliedclassParseOptionOutOfRangeExceptionError that indicates that an options value was outside of an acceptable rangeclassParseOptionUnexpectedExceptionException thrown if an option is encountered in an unexpected location e.g.classParseRestrictionViolatedExceptionException class that indicates that some restriction was violatedclassParseTooManyArgumentsExceptionError 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. errorsMethods 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 voidAbstractCollectingHandler. handleError(ParseException e)voidFailFast. handleError(ParseException e)voidParserErrorHandler. handleError(ParseException e)Handlers an error
-