type strconv.NumError
19 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))}
database/sql
convert.go#L492: if ne, ok := err.(*strconv.NumError); ok {
flag
flag.go#L112: ne, ok := err.(*strconv.NumError)
fmt
scan.go#L784: if e, ok := err.(*strconv.NumError); ok {
scan.go#L792: if e, ok := err.(*strconv.NumError); ok {
golang.org/x/net/http2
gotrack.go#L172: return n, &strconv.NumError{Func: "ParseUint", Num: string(s0), Err: err}
google.golang.org/protobuf/internal/encoding/text
decode_token.go#L323: nerr := err.(*strconv.NumError)
decode_token.go#L347: nerr := err.(*strconv.NumError)
net/http
h2_bundle.go#L3472: return n, &strconv.NumError{Func: "ParseUint", Num: string(s0), Err: err}