(symptom string)
| 100 | } |
| 101 | |
| 102 | func NewUnrecoverableError(symptom string) error { |
| 103 | return UnrecoverableError{ |
| 104 | Symptom: symptom, |
| 105 | } |
| 106 | } |
| 107 | |
| 108 | type UnrecoverableError struct { |
| 109 | Symptom string |
no outgoing calls
no test coverage detected