(fmtString string, args ...interface{})
| 76 | } |
| 77 | |
| 78 | func unprocessableEntityError(fmtString string, args ...interface{}) *HTTPError { |
| 79 | return httpError(http.StatusUnprocessableEntity, fmtString, args...) |
| 80 | } |
| 81 | |
| 82 | // HTTPError is an error with a message and an HTTP status code. |
| 83 | type HTTPError struct { |
no test coverage detected
searching dependent graphs…