Is implements the errors.Is() method used by more recent versions of Go.
(err error)
| 1475 | |
| 1476 | // Is implements the errors.Is() method used by more recent versions of Go. |
| 1477 | func (e *resolutionError) Is(err error) bool { |
| 1478 | return err.Error() == e.Error() |
| 1479 | } |