Klaus Post
2022-03-14 09:48:36 -07:00
committed by GitHub
parent 9c846106fa
commit c07af89e48
4 changed files with 471 additions and 3 deletions
+9
View File
@@ -101,6 +101,15 @@ func errInvalidRequestParameter(err error) *s3Error {
}
}
func errInvalidScanRangeParameter(err error) *s3Error {
return &s3Error{
code: "InvalidRequestParameter",
message: "The value of a parameter in ScanRange element is invalid. Check the service API documentation and try again.",
statusCode: 400,
cause: err,
}
}
func errObjectSerializationConflict(err error) *s3Error {
return &s3Error{
code: "ObjectSerializationConflict",