type net/textproto.ProtocolError
10 uses
net/textproto (current package)
reader.go#L197: err = ProtocolError("short response: " + line)
reader.go#L203: err = ProtocolError("invalid response code: " + line)
reader.go#L235: err = ProtocolError("unexpected multi-line response: " + message)
reader.go#L514: return m, ProtocolError("malformed MIME header initial line: " + string(line))
reader.go#L526: return m, ProtocolError("malformed MIME header line: " + string(kv))
reader.go#L530: return m, ProtocolError("malformed MIME header line: " + string(kv))
reader.go#L534: return m, ProtocolError("malformed MIME header line: " + string(kv))
reader.go#L591: return ProtocolError(fmt.Sprintf("malformed MIME header: missing colon: %q", line))
textproto.go#L46: type ProtocolError string
textproto.go#L48: func (p ProtocolError) Error() string {
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |