(err error)
| 46 | } |
| 47 | |
| 48 | func IsErrLFSObjectNotExist(err error) bool { |
| 49 | return errors.As(err, &ErrLFSObjectNotExist{}) |
| 50 | } |
| 51 | |
| 52 | func (err ErrLFSObjectNotExist) Error() string { |
| 53 | return fmt.Sprintf("LFS object does not exist: %v", err.args) |
no outgoing calls
no test coverage detected