File: errors.go

package info (click to toggle)
golang-github-klauspost-compress 1.17.11%2Bds1-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 46,592 kB
  • sloc: asm: 23,155; sh: 72; makefile: 12
file content (9 lines) | stat: -rw-r--r-- 188 bytes parent folder | download | duplicates (4)
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"
)