Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for isErrSignatureDoesNotMatch (0.1 seconds)

  1. cmd/object-api-errors.go

    	if errors.Is(err, errFileVersionNotFound) {
    		return true
    	}
    
    	var versionNotFound VersionNotFound
    	return errors.As(err, &versionNotFound)
    }
    
    // isErrSignatureDoesNotMatch - Check if error type is SignatureDoesNotMatch.
    func isErrSignatureDoesNotMatch(err error) bool {
    	var signatureDoesNotMatch SignatureDoesNotMatch
    	return errors.As(err, &signatureDoesNotMatch)
    }
    
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Fri Aug 09 02:05:14 GMT 2024
    - 22.1K bytes
    - Click Count (0)
Back to Top