Searched defs:NumError (Results 1 – 1 of 1) sorted by relevance
27 type NumError struct { struct28 Func string // the failing function (ParseBool, ParseInt, ParseUint, ParseFloat, ParseComplex)29 Num string // the input30 Err error // the reason the conversion failed (e.g. ErrRange, ErrSyntax, etc.)33 func (e *NumError) Error() string {37 func (e *NumError) Unwrap() error { return e.Err }