This file is indexed.

/usr/share/gocode/src/github.com/masterzen/winrm/error.go is in golang-github-masterzen-winrm-dev 0.0~git20170601.0.1ca0ba6-3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
package winrm

import "fmt"

// errWinrm generic error struct
type errWinrm struct {
	message string
}

// ErrWinrm implements the Error type interface
func (e errWinrm) Error() string {
	return fmt.Sprintf("%s", e.message)
}