type net/textproto.ProtocolError
8 uses
net/textproto (current package)
reader.go#L201: err = ProtocolError("short response: " + line)
reader.go#L207: err = ProtocolError("invalid response code: " + line)
reader.go#L237: err = ProtocolError("unexpected multi-line response: " + message)
reader.go#L501: return m, ProtocolError("malformed MIME header initial line: " + string(line))
reader.go#L513: return m, ProtocolError("malformed MIME header line: " + string(kv))
reader.go#L559: return ProtocolError(fmt.Sprintf("malformed MIME header: missing colon: %q", line))
textproto.go#L47: type ProtocolError string
textproto.go#L49: func (p ProtocolError) Error() string {
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin 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. |