()
| 46 | } |
| 47 | |
| 48 | func (e *HTTPError) Error() string { |
| 49 | return fmt.Sprintf(`response %d "%s"`, e.StatusCode, e.Message) |
| 50 | } |
| 51 | |
| 52 | // IsConflict returns true if the error is a 409 Conflict error |
| 53 | func (e *HTTPError) IsConflict() bool { |
no outgoing calls