golang.org/x/mod/module.ModuleError.Err (field)

9 uses

	golang.org/x/mod/module (current package)
		module.go#L140: 	Err     error
		module.go#L153: 		Err:     err,
		module.go#L158: 	if v, ok := e.Err.(*InvalidVersionError); ok {
		module.go#L162: 		return fmt.Sprintf("%s@%s: %v", e.Path, e.Version, e.Err)
		module.go#L164: 	return fmt.Sprintf("module %s: %v", e.Path, e.Err)
		module.go#L167: func (e *ModuleError) Unwrap() error { return e.Err }
		module.go#L208: 			Err:  &InvalidVersionError{Version: version, Err: errors.New("not a semantic version")},
		module.go#L213: 		return &ModuleError{Path: path, Err: err}

	golang.org/x/mod/modfile
		rule.go#L641: 					Err:     err.Err,