chore: code adjustments

This commit is contained in:
Toby 2023-07-24 17:08:19 -07:00
parent cbedb27f0f
commit f0ad2f77ca
3 changed files with 30 additions and 20 deletions

View file

@ -47,6 +47,13 @@ func (c DialError) Error() string {
return "dial error: " + c.Message
}
// ClosedError is returned when the client attempts to use a closed connection.
type ClosedError struct{}
func (c ClosedError) Error() string {
return "connection closed"
}
// ProtocolError is returned when the server/client runs into an unexpected
// or malformed request/response/message.
type ProtocolError struct {