blob: 092ef9eecacbd93b5370887b2d2c025f96a4c62b [file] [log] [blame]
Jon Perritt852278c2016-03-09 00:13:34 -06001package objects
2
Krzysztof Szukiełojć3f41d082017-05-07 14:43:06 +02003import "gerrit.mcp.mirantis.net/debian/gophercloud.git"
Jon Perritt852278c2016-03-09 00:13:34 -06004
5// ErrWrongChecksum is the error when the checksum generated for an object
6// doesn't match the ETAG header.
7type ErrWrongChecksum struct {
8 gophercloud.BaseError
9}
10
11func (e ErrWrongChecksum) Error() string {
12 return "Local checksum does not match API ETag header"
13}