codename-sendaround/internal/errors.go

11 lines
349 B
Go
Raw Normal View History

2019-07-11 12:00:45 +00:00
package internal
import "errors"
var (
ErrProtocolViolation = errors.New("protocol violation")
ErrClientClosedConnection = errors.New("client closed connection")
ErrUnexpectedRawDataTransmission = errors.New("Unexpected raw data transmission")
ErrUnexpectedOverlongRawData = errors.New("Unexpected overlong raw data")
)