type net.ParseError
8 uses
net (current package)
ip.go#L382: return &ParseError{Type: "IP address", Text: s}
ip.go#L553: return nil, nil, &ParseError{Type: "CIDR address", Text: s}
ip.go#L558: return nil, nil, &ParseError{Type: "CIDR address", Text: s}
ip.go#L563: return nil, nil, &ParseError{Type: "CIDR address", Text: s}
net.go#L563: type ParseError struct {
net.go#L572: func (e *ParseError) Error() string { return "invalid " + e.Type + ": " + e.Text }
net.go#L574: func (e *ParseError) Timeout() bool { return false }
net.go#L575: func (e *ParseError) Temporary() bool { return false }