Searched defs:DownloadDirPartialError (Results 1 – 1 of 1) sorted by relevance
137 type DownloadDirPartialError struct { struct138 Dir string139 Err error142 func (e *DownloadDirPartialError) Error() string { return fmt.Sprintf("%s: %v", e.Dir, e.Err) }143 func (e *DownloadDirPartialError) Is(err error) bool { return err == fs.ErrNotExist }