Jon Perritt | 852278c | 2016-03-09 00:13:34 -0600 | [diff] [blame] | 1 | package objects |
| 2 | |
Krzysztof Szukiełojć | 3f41d08 | 2017-05-07 14:43:06 +0200 | [diff] [blame] | 3 | import "gerrit.mcp.mirantis.net/debian/gophercloud.git" |
Jon Perritt | 852278c | 2016-03-09 00:13:34 -0600 | [diff] [blame] | 4 | |
| 5 | // ErrWrongChecksum is the error when the checksum generated for an object |
| 6 | // doesn't match the ETAG header. |
| 7 | type ErrWrongChecksum struct { |
| 8 | gophercloud.BaseError |
| 9 | } |
| 10 | |
| 11 | func (e ErrWrongChecksum) Error() string { |
| 12 | return "Local checksum does not match API ETag header" |
| 13 | } |