IsErrNotImplemented returns true if the unwrapped error is ErrNotImplemented
(err error)
| 74 | |
| 75 | // IsErrNotImplemented returns true if the unwrapped error is ErrNotImplemented |
| 76 | func IsErrNotImplemented(err error) bool { |
| 77 | return errors.Is(err, ErrNotImplemented) |
| 78 | } |
| 79 | |
| 80 | // IsErrParsingFailed returns true if the unwrapped error is ErrParsingFailed |
| 81 | func IsErrParsingFailed(err error) bool { |
nothing calls this directly
no outgoing calls
no test coverage detected