(msg string, arg ...interface{})
| 9 | type vmError error |
| 10 | |
| 11 | func errorf(msg string, arg ...interface{}) error { |
| 12 | return vmError(fmt.Errorf(msg, arg...)) |
| 13 | } |
| 14 | |
| 15 | func (vm *VM) wraperr(e error) error { |
| 16 | return errors.WithData(e, "vm", vm) |
no test coverage detected