go_wireproto/errs.go
brent saner d4bb259b83
v1.0.0
Initial release.
2024-07-10 00:18:54 -04:00

15 lines
515 B
Go

package wireproto
import (
"errors"
)
var (
ErrBadCksum error = errors.New("checksums do not match")
ErrBadHdr error = errors.New("a header mismatch occurred")
ErrBadNumRecords error = errors.New("the number of child objects does not match the count")
ErrCustomUnmarshal error = errors.New("an error occurred during custom unmarshaling")
ErrInvalidNums error = errors.New("invalid number of results")
ErrNotEnoughFields error = errors.New("not enough fields/parameters in request")
)