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") )