1 package lz4ref 2 3 type Error string 4 5 func (e Error) Error() string { return string(e) } 6 7 const ( 8 ErrInvalidSourceShortBuffer Error = "lz4: invalid source or destination buffer too short" 9 ) 10
View as plain text