(lorawanField string)
| 92 | } |
| 93 | |
| 94 | func errMissing(lorawanField string) *errors.Error { |
| 95 | return errUnknownField.WithAttributes("lorawan_field", lorawanField) |
| 96 | } |
| 97 | |
| 98 | func errExpectedBetween(lorawanField string, min, max any) valueErr { |
| 99 | return unexpectedValue(errFieldBound.WithAttributes("lorawan_field", lorawanField, "min", min, "max", max)) |
no test coverage detected