Method
__init__
(self, msg, filename=None, lineno=None)
Source from the content-addressed store, hash-verified
| 10 | class NetrcParseError(Exception): |
| 11 | """Exception raised on syntax errors in the .netrc file.""" |
| 12 | def __init__(self, msg, filename=None, lineno=None): |
| 13 | self.filename = filename |
| 14 | self.lineno = lineno |
| 15 | self.msg = msg |
| 16 | Exception.__init__(self, msg) |
| 17 | |
| 18 | def __str__(self): |
| 19 | return "%s (%s, line %s)" % (self.msg, self.filename, self.lineno) |
Callers
nothing calls this directly
Tested by
no test coverage detected