errors
type HTTPError
type HTTPError struct {
StatusCode int `json:"statusCode"` // response status code
Name string `json:"name"` // name related to the given StatusCode
Message string `json:"message"` // user defined message
Original interface{} `json:"original"` // original body from an http response
}
func NewHTTPError
NewHTTPError returns a new initialized HTTPError.
func NewHTTPErrorFromResponse
NewHTTPErrorFromResponse returns a new HTTPError based in a http.Response.
- It maps the response body to the HTTPError.Original property.
- It maps the response status to the HTTPError.Message.
- If it fails to read the response body, the HTTPError.Message will reflect it.
func (HTTPError) Error
Error returns the HTTPError.Message property.
func (HTTPError) Marshall
Marshall converts an HTTPError to json.
func (HTTPError) WriteResponse
WriteResponse writes to the sender an HTTPError in json format.