(err error)
| 35 | } |
| 36 | |
| 37 | func IsNotFoundError(err error) bool { |
| 38 | return errors.Is(pkgerr.Cause(err), ObjectNotFound) || errors.Is(pkgerr.Cause(err), StorageNotFound) |
| 39 | } |
| 40 | |
| 41 | func IsNotSupportError(err error) bool { |
| 42 | return errors.Is(pkgerr.Cause(err), NotSupport) |
no outgoing calls
no test coverage detected