(id int64, badType string)
| 617 | } |
| 618 | |
| 619 | func hexFormatErrorV2(id int64, badType string) error { |
| 620 | return newFormatError(id, "only ints, uints, bytes, and strings can be formatted as hex, was given %s", badType) |
| 621 | } |
| 622 | |
| 623 | func octalFormatErrorV2(id int64, badType string) error { |
| 624 | return newFormatError(id, "octal clause can only be used on ints and uints, was given %s", badType) |
no test coverage detected