type net/textproto.ProtocolError
10 uses
net/textproto (current package)
reader.go#L217: err = ProtocolError("short response: " + line)
reader.go#L223: err = ProtocolError("invalid response code: " + line)
reader.go#L255: err = ProtocolError("unexpected multi-line response: " + message)
reader.go#L538: return m, ProtocolError("malformed MIME header initial line: " + string(line))
reader.go#L550: return m, ProtocolError("malformed MIME header line: " + string(kv))
reader.go#L554: return m, ProtocolError("malformed MIME header line: " + string(kv))
reader.go#L558: return m, ProtocolError("malformed MIME header line: " + string(kv))
reader.go#L606: 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.7.6. (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 @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |