-
Notifications
You must be signed in to change notification settings - Fork 0
/
error.go
39 lines (31 loc) · 946 Bytes
/
error.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package cfg
import (
"fmt"
"sort"
"strings"
)
// ErrFileNotFound is returned as a wrapped error by `Load` when the config file is
// not found in the given search dirs.
var ErrFileNotFound = fmt.Errorf("file not found")
// ErrInvalidSources is returned as a wrapped error by `Load` when no file is found and
// env settings are disabled.
var ErrInvalidSources = fmt.Errorf("must provide files or use env")
// fieldErrors collects errors for fields of config struct.
type fieldErrors map[string]error
// Error formats all fields errors into a single string.
func (fe fieldErrors) Error() string {
keys := make([]string, 0, len(fe))
for key := range fe {
keys = append(keys, key)
}
sort.Strings(keys)
var sb strings.Builder
sb.Grow(len(keys) * 10)
for _, key := range keys {
sb.WriteString(key)
sb.WriteString(": ")
sb.WriteString(fe[key].Error())
sb.WriteString(", ")
}
return strings.TrimSuffix(sb.String(), ", ")
}