Exception raised on syntax errors in the .netrc file.
| 8 | |
| 9 | |
| 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) |
| 20 | |
| 21 | |
| 22 | class _netrclex: |
no outgoing calls
no test coverage detected