| 3370 | } |
| 3371 | |
| 3372 | type MyError struct { |
| 3373 | status int |
| 3374 | Message string `json:"message"` |
| 3375 | Details []string `json:"details"` |
| 3376 | } |
| 3377 | |
| 3378 | func (e *MyError) Error() string { |
| 3379 | return e.Message |
nothing calls this directly
no outgoing calls
no test coverage detected