type golang.org/x/xerrors.noWrapError

8 uses

	golang.org/x/xerrors (current package)
		fmt.go#L45: 			return &noWrapError{fmt.Sprintf(format, a...), nil, Caller(1)}
		fmt.go#L60: 		return &noWrapError{msg, err, frame}
		fmt.go#L66: 		return &noWrapError{msg, nil, Caller(1)}
		fmt.go#L72: 		return &noWrapError{fmt.Sprintf("%sw(%s)", percentBangString, msg), nil, Caller(1)}
		fmt.go#L149: type noWrapError struct {
		fmt.go#L155: func (e *noWrapError) Error() string {
		fmt.go#L159: func (e *noWrapError) Format(s fmt.State, v rune) { FormatError(e, s, v) }
		fmt.go#L161: func (e *noWrapError) FormatError(p Printer) (next error) {