IsErrUnsupportedFlag returns true if the unwrapped error is ErrUnsupportedFlag
(err error)
| 69 | |
| 70 | // IsErrUnsupportedFlag returns true if the unwrapped error is ErrUnsupportedFlag |
| 71 | func IsErrUnsupportedFlag(err error) bool { |
| 72 | return errors.Is(err, ErrUnsupportedFlag) |
| 73 | } |
| 74 | |
| 75 | // IsErrNotImplemented returns true if the unwrapped error is ErrNotImplemented |
| 76 | func IsErrNotImplemented(err error) bool { |
nothing calls this directly
no outgoing calls
no test coverage detected