(id int64, msg string, args ...any)
| 698 | } |
| 699 | |
| 700 | func newFormatError(id int64, msg string, args ...any) error { |
| 701 | return formatError{ |
| 702 | id: id, |
| 703 | msg: fmt.Sprintf(msg, args...), |
| 704 | } |
| 705 | } |
| 706 | |
| 707 | // Error implements error. |
| 708 | func (e formatError) Error() string { |
no outgoing calls
no test coverage detected