Error is a rich error implementation.
| 39 | |
| 40 | // Error is a rich error implementation. |
| 41 | type Error struct { |
| 42 | *Definition |
| 43 | *stack |
| 44 | correlationID string |
| 45 | cause error |
| 46 | details []proto.Message |
| 47 | attributes map[string]any |
| 48 | grpcStatus *atomic.Value |
| 49 | } |
| 50 | |
| 51 | func (e *Error) String() string { |
| 52 | if e == nil { |
nothing calls this directly
no outgoing calls
no test coverage detected