HTTPError ...
| 32 | |
| 33 | // HTTPError ... |
| 34 | type HTTPError struct { |
| 35 | code int |
| 36 | err string |
| 37 | desc string |
| 38 | extra map[string]interface{} |
| 39 | } |
| 40 | |
| 41 | // NewHTTPError ... |
| 42 | func NewHTTPError(code int, errStr string, args ...string) *HTTPError { |
nothing calls this directly
no outgoing calls
no test coverage detected