Collection of HTTP error implementations
type Error interface{
error
Code() int
}
Code | Corresponding error type |
---|---|
400 | BadRequest |
401 | Unauthorized |
403 | Forbidden |
404 | NotFound |
405 | MethodNotAllowed |
406 | NotAcceptable |
408 | RequestTimeout |
409 | Conflict |
500 | InternalServer |
501 | NotImplemented |
503 | ServiceUnavailable |