| 682 | |
| 683 | /// Thrown when validation of results fails |
| 684 | class ValidationError : public ParseError { |
| 685 | CLI11_ERROR_DEF(ParseError, ValidationError) |
| 686 | CLI11_ERROR_SIMPLE(ValidationError) |
| 687 | explicit ValidationError(std::string name, std::string msg) : ValidationError(name + ": " + msg) {} |
| 688 | }; |
| 689 | |
| 690 | /// Thrown when a required option is missing |
| 691 | class RequiredError : public ParseError { |
no outgoing calls
no test coverage detected