type golang.org/x/mod/zip.FileError

13 uses

	golang.org/x/mod/zip (current package)
		zip.go#L108: 	Omitted []FileError
		zip.go#L112: 	Invalid []FileError
		zip.go#L134: type FileErrorList []FileError
		zip.go#L147: type FileError struct {
		zip.go#L152: func (e FileError) Error() string {
		zip.go#L156: func (e FileError) Unwrap() error {
		zip.go#L204: 		fe := FileError{Path: path, Err: err}
		zip.go#L404: 		cf.Invalid = append(cf.Invalid, FileError{Path: zf.Name, Err: err})
		zip.go#L716: func listFilesInDir(dir string) (files []File, omitted []FileError, err error) {
		zip.go#L732: 			omitted = append(omitted, FileError{Path: slashPath, Err: errVendored})
		zip.go#L747: 				omitted = append(omitted, FileError{Path: slashPath, Err: errVCS})
		zip.go#L753: 				omitted = append(omitted, FileError{Path: slashPath, Err: errSubmoduleDir})
		zip.go#L762: 			omitted = append(omitted, FileError{Path: slashPath, Err: errNotRegular})