-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcarriers.go
49 lines (41 loc) · 1.52 KB
/
carriers.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
package herr
// StatusCodeCarrier can be implemented by an error to support setting status codes in the error itself.
type StatusCodeCarrier interface {
// StatusCode returns the status code of this error.
StatusCode() int
}
// RequestIDCarrier can be implemented by an error to support error contexts.
type RequestIDCarrier interface {
// RequestID returns the ID of the request that caused the error, if applicable.
RequestID() string
}
// ReasonCarrier can be implemented by an error to support error contexts.
type ReasonCarrier interface {
// Reason returns the reason for the error, if applicable.
Reason() string
}
// DebugCarrier can be implemented by an error to support error contexts.
type DebugCarrier interface {
// Debug returns debugging information for the error, if applicable.
Debug() string
}
// StatusCarrier can be implemented by an error to support error contexts.
type StatusCarrier interface {
// ID returns the error id, if applicable.
Status() string
}
// DetailsCarrier can be implemented by an error to support error contexts.
type DetailsCarrier interface {
// Details returns details on the error, if applicable.
Details() map[string]interface{}
}
// ItemsCarrier can be implemented by an error to support error contexts.
type ItemsCarrier interface {
// Details returns details on the error, if applicable.
Items() []Item
}
// ItemsCarrier can be implemented by an error to support error contexts.
type MessageCarrier interface {
// Details returns details on the error, if applicable.
Message() string
}