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 {