(id int64, badType string)
| 669 | } |
| 670 | |
| 671 | func decimalFormatError(id int64, badType string) error { |
| 672 | return newFormatError(id, "decimal clause can only be used on integers, was given %s", badType) |
| 673 | } |
| 674 | |
| 675 | func fixedPointFormatError(id int64, badType string) error { |
| 676 | return newFormatError(id, "fixed-point clause can only be used on doubles, was given %s", badType) |
no test coverage detected