Searched defs:HTTPError (Results 1 – 14 of 14) sorted by relevance
35 type HTTPError struct { struct36 URL string // redacted37 Status string38 StatusCode int39 Err error // underlying error, if known40 Detail string // limited to maxErrorDetailLines and maxErrorDetailBytes48 func (e *HTTPError) Error() string {72 func (e *HTTPError) Is(target error) bool {76 func (e *HTTPError) Unwrap() error {
35 class HTTPError(URLError, urllib.response.addinfourl): class
45 class HTTPError(RequestException): class
8 class HTTPError(Exception): class