| 161 | |
| 162 | |
| 163 | class ForbiddenProxyRequest(ParseException): |
| 164 | def __init__(self, host): |
| 165 | self.host = host |
| 166 | self.code = 403 |
| 167 | |
| 168 | def __str__(self): |
| 169 | return "Proxy request from %r not allowed" % self.host |
| 170 | |
| 171 | |
| 172 | class InvalidSchemeHeaders(ParseException): |
no outgoing calls
no test coverage detected