Home
last modified time | relevance | path

Searched defs:notExistError (Results 1 – 2 of 2) sorted by relevance

/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/go/internal/modfetch/
Drepo.go393 type notExistError struct { struct
394 err error
401 func (e notExistError) Error() string {
405 func (notExistError) Is(target error) bool {
409 func (e notExistError) Unwrap() error {
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/go/internal/modfetch/codehost/
Dgit.go44 type notExistError struct { struct
45 err error
48 func (e notExistError) Error() string { return e.err.Error() }
49 func (notExistError) Is(err error) bool { return err == fs.ErrNotExist }