Create a non-comparable error
(message string)
| 181 | |
| 182 | // Create a non-comparable error |
| 183 | func newNonComparableError(message string) error { |
| 184 | return error_{info: message} |
| 185 | } |
| 186 | |
| 187 | func (e error_) Error() string { |
| 188 | return e.info |
no outgoing calls
no test coverage detected
searching dependent graphs…