type strconv.NumError

14 uses

	strconv (current package)
		number.go#L252: type NumError struct {
		number.go#L258: func (e *NumError) Error() string {
		number.go#L262: func (e *NumError) Unwrap() error { return e.Err }
		number.go#L272: func syntaxError(fn, str string) *NumError {
		number.go#L273: 	return &NumError{fn, stringslite.Clone(str), ErrSyntax}
		number.go#L276: func rangeError(fn, str string) *NumError {
		number.go#L277: 	return &NumError{fn, stringslite.Clone(str), ErrRange}
		number.go#L280: func baseError(fn, str string, base int) *NumError {
		number.go#L281: 	return &NumError{fn, stringslite.Clone(str), errors.New("invalid base " + Itoa(base))}
		number.go#L284: func bitSizeError(fn, str string, bitSize int) *NumError {
		number.go#L285: 	return &NumError{fn, stringslite.Clone(str), errors.New("invalid bit size " + Itoa(bitSize))}

	fmt
		scan.go#L784: 			if e, ok := err.(*strconv.NumError); ok {
		scan.go#L792: 			if e, ok := err.(*strconv.NumError); ok {

	net/http
		h2_bundle.go#L3472: 	return n, &strconv.NumError{Func: "ParseUint", Num: string(s0), Err: err}