-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwrapper.go
51 lines (40 loc) · 1.07 KB
/
wrapper.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
40
41
42
43
44
45
46
47
48
49
50
51
package errors
import (
"strings"
)
// ErrorWrapper defines the interface for an error wrapper that extends an error with additional information
type ErrorWrapper interface {
Error() string
GetOriginalError() error
}
// wrappedError holds an error wrapped with a context message
type wrappedError struct {
originalError error
path string
messages []string
}
// Error returns the string representation of the error
func (err *wrappedError) Error() string {
builder := strings.Builder{}
builder.WriteString(err.path)
if len(err.messages) > 0 {
builder.WriteString(": ")
for _, message := range err.messages {
builder.WriteString(message)
builder.WriteString("; ")
}
}
builder.WriteString(" ➡︎ ")
builder.WriteString(err.originalError.Error())
return builder.String()
}
// GetOriginalError returns the original error
func (err *wrappedError) GetOriginalError() error {
if err.originalError != nil {
originalError, ok := (err.originalError).(ErrorWrapper)
if ok {
return originalError.GetOriginalError()
}
}
return err.originalError
}