type net.ParseError

8 uses

	net (current package)
		ip.go#L350: 		return &ParseError{Type: "IP address", Text: s}
		ip.go#L520: 		return nil, nil, &ParseError{Type: "CIDR address", Text: s}
		ip.go#L526: 		return nil, nil, &ParseError{Type: "CIDR address", Text: s}
		ip.go#L531: 		return nil, nil, &ParseError{Type: "CIDR address", Text: s}
		net.go#L536: type ParseError struct {
		net.go#L545: func (e *ParseError) Error() string { return "invalid " + e.Type + ": " + e.Text }
		net.go#L547: func (e *ParseError) Timeout() bool   { return false }
		net.go#L548: func (e *ParseError) Temporary() bool { return false }