Method
__init__
(self, message, stdout=None, stderr=None, error_code=None)
Source from the content-addressed store, hash-verified
| 159 | class ArgumentParserError(Exception): |
| 160 | |
| 161 | def __init__(self, message, stdout=None, stderr=None, error_code=None): |
| 162 | Exception.__init__(self, message, stdout, stderr) |
| 163 | self.message = message |
| 164 | self.stdout = stdout |
| 165 | self.stderr = stderr |
| 166 | self.error_code = error_code |
| 167 | |
| 168 | |
| 169 | def stderr_to_parser_error(parse_args, *args, **kwargs): |
Callers
nothing calls this directly
Tested by
no test coverage detected