package photos import "fmt" type HTTPStatusError struct { Operation string StatusCode int } func (e *HTTPStatusError) Error() string { return fmt.Sprintf("%s failed: %d", e.Operation, e.StatusCode) }