(id int64, badType string)
| 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) |
| 677 | } |
| 678 | |
| 679 | func hexFormatError(id int64, badType string) error { |
| 680 | return newFormatError(id, "only integers, byte buffers, and strings can be formatted as hex, was given %s", badType) |
no test coverage detected