package log // HTTPError is used when the response of a HTTP request is unexpected or otherwise incorrect. type HTTPError interface { Error() string ReadBody() (string, error) StatusCode() int Close() error }