ref: ab174c473618dd3743881cf44e02c2db4d1ecd5f
dir: /errors/missing.go/
package errors
import (
"fmt"
objectid "codeberg.org/lindenii/furgit/object/id"
)
// ObjectMissingError indicates that a referenced object is absent from the
// repository object store.
type ObjectMissingError struct {
OID objectid.ObjectID
}
// Error implements error.
func (e *ObjectMissingError) Error() string {
return fmt.Sprintf("missing object %s", e.OID)
}