Error returns HTTP error message
()
| 14 | |
| 15 | // Error returns HTTP error message |
| 16 | func (e *Error) Error() string { |
| 17 | return fmt.Sprintf("HTTP code %d while fetching %s", e.Code, e.URL) |
| 18 | } |
| 19 | |
| 20 | // NoCandidateFoundError indicates that now candidate of given url could be found |
| 21 | type NoCandidateFoundError struct { |
no outgoing calls