aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/klauspost/compress/internal/lz4ref/errors.go
blob: b10c5e1b53820695695f0c90136df5eca46c6d3d (plain) (blame)
1
2
3
4
5
6
7
8
9
package lz4ref

type Error string

func (e Error) Error() string { return string(e) }

const (
	ErrInvalidSourceShortBuffer Error = "lz4: invalid source or destination buffer too short"
)