| 21 | import "errors" |
| 22 | |
| 23 | type FeedbackError struct { |
| 24 | IsRetry bool `json:"isRetry"` |
| 25 | Err error `json:"err"` |
| 26 | } |
| 27 | |
| 28 | func (e *FeedbackError) Error() string { |
| 29 | /* msg := "" |
nothing calls this directly
no outgoing calls
no test coverage detected