| 22 | } |
| 23 | |
| 24 | type Error struct { |
| 25 | PrivateReason error |
| 26 | Verb string |
| 27 | PublicReason string |
| 28 | StatusCode int |
| 29 | } |
| 30 | |
| 31 | func (e *Error) Error() string { |
| 32 | return fmt.Sprintf("challenge: error when processing challenge: %s: %v", e.Verb, e.PrivateReason) |
nothing calls this directly
no outgoing calls
no test coverage detected