| 231 | class HTTP400BadRequest(HTTPError): |
| 232 | pass # URL contains an invalid request. |
| 233 | class HTTP401Authentication(HTTPError): |
| 234 | pass # URL requires a login and password. |
| 235 | class HTTP403Forbidden(HTTPError): |
| 236 | pass # URL is not accessible (user-agent?) |
| 237 | class HTTP404NotFound(HTTPError): |
no outgoing calls
no test coverage detected
searching dependent graphs…