| 81 | |
| 82 | |
| 83 | class InvalidHeaderName(ParseException): |
| 84 | def __init__(self, hdr): |
| 85 | self.hdr = hdr |
| 86 | |
| 87 | def __str__(self): |
| 88 | return "Invalid HTTP header name: %r" % self.hdr |
| 89 | |
| 90 | |
| 91 | class UnsupportedTransferCoding(ParseException): |
no outgoing calls
no test coverage detected