| 48 | |
| 49 | |
| 50 | class ExpectationFailed(ParseException): |
| 51 | def __init__(self, expect): |
| 52 | self.expect = expect |
| 53 | |
| 54 | def __str__(self): |
| 55 | return "Unable to comply with expectation: %r" % (self.expect, ) |
| 56 | |
| 57 | |
| 58 | class InvalidHTTPVersion(ParseException): |
no outgoing calls
no test coverage detected