blob: 092ef9eecacbd93b5370887b2d2c025f96a4c62b [file] [log] [blame]
package objects
import "gerrit.mcp.mirantis.net/debian/gophercloud.git"
// ErrWrongChecksum is the error when the checksum generated for an object
// doesn't match the ETAG header.
type ErrWrongChecksum struct {
gophercloud.BaseError
}
func (e ErrWrongChecksum) Error() string {
return "Local checksum does not match API ETag header"
}