(provided interface{}, multiple interface{})
| 299 | } |
| 300 | |
| 301 | func ErrorIsNotMultiple(provided interface{}, multiple interface{}) error { |
| 302 | return errors.WithStack(&errors.Error{ |
| 303 | Kind: ErrIsNotMultiple, |
| 304 | Message: fmt.Sprintf("%s is not a multiple of %s", s.UserStr(provided), s.UserStr(multiple)), |
| 305 | }) |
| 306 | } |
| 307 | |
| 308 | func ErrorNonStringKeyFound(key interface{}) error { |
| 309 | return errors.WithStack(&errors.Error{ |
no test coverage detected