mirror of
https://github.com/kopia/kopia.git
synced 2026-01-24 06:18:02 -05:00
13 lines
336 B
Go
13 lines
336 B
Go
package blob
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
// ErrBlockNotFound is returned when a block cannot be found in storage.
|
|
ErrBlockNotFound = errors.New("block not found")
|
|
|
|
// ErrInvalidChecksum is returned when a storage block is invalid, which may indicate
|
|
// that decryption has failed.
|
|
ErrInvalidChecksum = errors.New("invalid checksum")
|
|
)
|