google.golang.org/grpc/internal/status.Status.Err (method)

18 uses

	google.golang.org/grpc/internal/status (current package)
		status.go#L63: 	return New(c, msg).Err()
		status.go#L96: func (s *Status) Err() error {

	google.golang.org/grpc/internal/transport
		http2_client.go#L1202: 		t.closeStream(s, st.Err(), true, http2.ErrCodeProtocol, st, nil, false)
		transport.go#L367: 		return nil, s.status.Err()

	google.golang.org/grpc
		clientconn.go#L562: 		return status.FromContextError(ctx.Err()).Err()
		rpc_util.go#L643: 		return nil, st.Err()
		server.go#L1137: 			return st.Err()
		server.go#L1413: 			return st.Err()
		server.go#L1454: 			appErr = appStatus.Err()
		stream.go#L579: 		return status.FromContextError(cs.ctx.Err()).Err()
		stream.go#L911: 			if statusErr := a.s.Status().Err(); statusErr != nil {
		stream.go#L950: 		return a.s.Status().Err() // non-server streaming Recv returns nil on success
		stream.go#L1244: 			if statusErr := as.s.Status().Err(); statusErr != nil {
		stream.go#L1267: 		return as.s.Status().Err() // non-server streaming Recv returns nil on success

	google.golang.org/grpc/credentials/alts
		utils.go#L155: 		return status.Newf(codes.PermissionDenied, "The context is not an ALTS-compatible context: %v", err).Err()
		utils.go#L162: 	return status.Newf(codes.PermissionDenied, "Client %v is not authorized", authInfo.PeerServiceAccount()).Err()

	google.golang.org/grpc/status
		status.go#L58: 	return New(c, msg).Err()
		status.go#L68: 	return FromProto(s).Err()