Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for F401 (0.12 sec)

  1. internal/s3select/unused-errors.go

    		cause:      err,
    	}
    }
    
    func errUnauthorizedAccess(err error) *s3Error {
    	return &s3Error{
    		code:       "UnauthorizedAccess",
    		message:    "You are not authorized to perform this operation",
    		statusCode: 401,
    		cause:      err,
    	}
    }
    
    func errEmptyRequestBody(err error) *s3Error {
    	return &s3Error{
    		code:       "EmptyRequestBody",
    		message:    "Request body cannot be empty.",
    		statusCode: 400,
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Feb 20 08:16:35 GMT 2024
    - 17.5K bytes
    - Viewed (0)
Back to top