type net.ParseError

7 uses

	net (current package)
		ip.go#L423: 		return &ParseError{Type: "IP address", Text: s}
		ip.go#L744: 		return nil, nil, &ParseError{Type: "CIDR address", Text: s}
		ip.go#L755: 		return nil, nil, &ParseError{Type: "CIDR address", Text: s}
		net.go#L535: type ParseError struct {
		net.go#L544: func (e *ParseError) Error() string { return "invalid " + e.Type + ": " + e.Text }
		net.go#L546: func (e *ParseError) Timeout() bool   { return false }
		net.go#L547: func (e *ParseError) Temporary() bool { return false }