| 64 | |
| 65 | |
| 66 | class InvalidHeader(ParseException): |
| 67 | def __init__(self, hdr, req=None): |
| 68 | self.hdr = hdr |
| 69 | self.req = req |
| 70 | |
| 71 | def __str__(self): |
| 72 | return "Invalid HTTP Header: %r" % self.hdr |
| 73 | |
| 74 | |
| 75 | class ObsoleteFolding(ParseException): |
no outgoing calls
no test coverage detected