go-http-tunnel/errors.go
2017-02-08 14:26:32 +01:00

11 lines
285 B
Go

package tunnel
import "errors"
var (
errClientNotSubscribed = errors.New("client not subscribed")
errClientNotConnected = errors.New("client not connected")
errClientAlreadyConnected = errors.New("client already connected")
errUnauthorised = errors.New("unauthorised")
)