Deprecated: IsBadRequest reports whether err is a BadRequest error. Use Is(err, BadRequest)
(err error)
| 373 | // Deprecated: IsBadRequest reports whether err is a BadRequest error. |
| 374 | // Use Is(err, BadRequest) |
| 375 | func IsBadRequest(err error) bool { |
| 376 | return Is(err, BadRequest) |
| 377 | } |
| 378 | |
| 379 | // MethodNotAllowedf returns an error which satisfies Is(err, MethodNotAllowed) |
| 380 | // and the Locationer interface. |
nothing calls this directly
no test coverage detected
searching dependent graphs…