(id int64, badType string)
| 681 | } |
| 682 | |
| 683 | func octalFormatError(id int64, badType string) error { |
| 684 | return newFormatError(id, "octal clause can only be used on integers, was given %s", badType) |
| 685 | } |
| 686 | |
| 687 | func scientificFormatError(id int64, badType string) error { |
| 688 | return newFormatError(id, "scientific clause can only be used on doubles, was given %s", badType) |
no test coverage detected