| 146 | } |
| 147 | |
| 148 | type Error struct { |
| 149 | Operation string |
| 150 | UnderlyingError error |
| 151 | } |
| 152 | |
| 153 | func (e *Error) Error() string { |
| 154 | return fmt.Sprintf("%s: %v", e.Operation, e.UnderlyingError) |
nothing calls this directly
no outgoing calls
no test coverage detected