Browse Source

add IsNoSuchKeyError function

tags/v0.7.3
jojoliang 5 years ago
parent
commit
3fded96121
  1. 14
      error.go

14
error.go

@ -47,3 +47,17 @@ func checkResponse(r *http.Response) error {
}
return errorResponse
}
func IsNoSuchKeyError(e error) bool {
if e == nil {
return false
}
err, ok := e.(*ErrorResponse)
if !ok {
return false
}
if err.Response != nil && err.Response.StatusCode == 404 && err.Code == "NoSuchKey" {
return true
}
return false
}
Loading…
Cancel
Save