(key string)
| 13 | ) |
| 14 | |
| 15 | func newErrNoConfigEntry(key string) error { |
| 16 | return fmt.Errorf("%w: missing key %s", ErrNoConfigEntry, key) |
| 17 | } |
| 18 | |
| 19 | func newErrMultipleConfigEntry(key string) error { |
| 20 | return fmt.Errorf("%w: duplicated key %s", ErrMultipleConfigEntry, key) |
no test coverage detected